โ Back to HTML DOM
Question 132
Replace a CSS Class
Replace a CSS Class
Select the div with id="alert" and replace its "info" class with "warning" usingclassList.replace(). Platform-Provided HTML (READ-ONLY): <div id="alert" class="info">Message</div> Steps: 1. Select the div withdocument.getElementById(). 2. CallclassList.replace("info", "warning").
Expected Output:
<div id="alert" class="warning">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.