Answers for "vanilla js if body has class"

6

javascript hass class

if (myElement.classList.contains('someClassname')) {
    // do something
}
Posted by: Guest on December-11-2019
0

check if body has class javascript

document.body.classList.contains('my-class-name')
Posted by: Guest on April-16-2021

Code answers related to "vanilla js if body has class"

Code answers related to "Javascript"

Browse Popular Code Answers by Language