Answers for "check if a class is present in a body js"

4

check if a class exists javascript

const element = document.querySelector("#box");

element.classList.contains("active");
Posted by: Guest on August-08-2020
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 "check if a class is present in a body js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language