Answers for "add things to div class javascript"

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 "add things to div class javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language