scrimba
Learn Accessibility
ARIA live regions
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

AboutCommentsNotes
ARIA live regions
Expand for more info
index.js
run
preview
console
function sendMessage() {
// Get the button element
const button = document.getElementById('submitButton');

// Replace the button with a paragraph
button.outerHTML = '<p id="submitMessage" class="submit-message">Message sent! ✅</p>';

// Get the home link element and add focus to it

}
Console
/index.html
-6:02