Answers for "add css by class name in javascript"

31

add class javascript

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 css by class name in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language