โ Back to HTML DOM
Question 20
Remove CSS Class
Remove CSS Class
Select the div with id="alertBox" and remove the CSS class "error" from it. Platform-Provided HTML (READ-ONLY): <div id="alertBox" class="alert error">Error Message</div> Steps: 1. Use document.getElementById() to select the div 2. Use classList.remove() to remove the "error" class
Expected Output:
<div id="alertBox" class="alert">Error Message</div>
Topics:
HTML DOM
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (clog, fn, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.