Answers for "how to add class dynamically in javascript for existing class"

31

js add class

var someElement= document.getElementById("myElement");
    someElement.className += " newclass";//add "newclass" to element (space in front is important)
Posted by: Guest on July-24-2019

Code answers related to "how to add class dynamically in javascript for existing class"

Code answers related to "Javascript"

Browse Popular Code Answers by Language