Answers for "check if class exist js wih condition"

1

if a class exists jquery

if ($(".mydivclass").length){
    // Do something if class exists
} else {
    // Do something if class does not exist
}
Posted by: Guest on November-28-2020
4

check if a class exists javascript

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

element.classList.contains("active");
Posted by: Guest on August-08-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language