Answers for ".classList"

2

css class list

var myElement = document.getElementById("myElementID");
myElement.classList.add("style1 style2");
myElement.classList.remove("style1 style2");
Posted by: Guest on October-26-2019
0

.classList

// .classList method returns an array of the classes attached to the element it is called with.
document.getElementById("myDIV").classList
// It returns
// [ 'className1', 'className2', ... ]
Posted by: Guest on April-26-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language