Answers for "javascript add class to element based on id"

31

javascript add class to element

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

add class to html tag javascript

var root = document.getElementsByTagName( 'html' )[0]; // '0' to assign the first (and only `HTML` tag)

root.className += ' responsive';
Posted by: Guest on December-03-2020

Code answers related to "javascript add class to element based on id"

Code answers related to "Javascript"

Browse Popular Code Answers by Language