Answers for "how to add elements to class in html java"

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 elements to class in html java"

Code answers related to "Javascript"

Browse Popular Code Answers by Language