Run ❯
Get your
own
website
Result Size:
625 x 565
×
Change Orientation
Save Code
Change Theme, Dark/Light
Go to Spaces
<!DOCTYPE html> <html> <style> .myStyle { background-color: coral; padding:16px; } </style> <body> <h1>The DOMToken Object</h1> <h2>The remove() Method</h2> <button onclick="myFunction()">Remove</button> <p>Click "Remove" to remove the "myStyle" class from myDIV.</p> <div id="myDIV" class="myStyle"> <p>I am myDIV.</p> </div> <script> function myFunction() { document.getElementById("myDIV").classList.remove("myStyle"); } </script> </body> </html>