Source Code:
(back to article)
Submit
Result:
Report an issue
<style> .new-class { font-weight: bold; color: green; } </style> <div id="myDiv">Class manipulation</div> <script> document.getElementById("myDiv").classList.add("new-class"); </script>