Answers for "how to add class to css using js"

1

js add css class to element

function myFunction() {
  var element = document.getElementById("myDIV");
  element.classList.add("mystyle");
}
Posted by: Guest on April-09-2021
42

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
1

add css class to html in js

document.getElementById("container").classList.add("main");
Posted by: Guest on February-25-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language