Answers for "how to add class in vanilla js"

1

addclass js vanilla

element.classList.add('className');
Posted by: Guest on January-10-2021
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
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"

Browse Popular Code Answers by Language