CJCoding With Joseph

Replace a CSS Class

Select the div with id="alert" and replace its "info" class with "warning" using classList.replace().

Platform-Provided HTML (READ-ONLY):
<div id="alert" class="info">Message</div>

Steps:
1. Select the div with document.getElementById().
2. Call classList.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.