Answers for "javascript check if class has method"

39

javascript check if element has class

if(document.getElementById("myElmentID").classList.contains("hidden")){
// I have the 'hidden' class
}
Posted by: Guest on August-02-2019
4

check if a class exists javascript

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

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

check if object has method javascript

if(typeof myObj.prop2 === 'function') {
    alert("It's a function");
} else if (typeof myObj.prop2 === 'undefined') {
    alert("It's undefined");
} else {
    alert("It's neither undefined nor a function. It's a " + typeof myObj.prop2);
}
Posted by: Guest on June-25-2020
-1

how to check has class name in js?

element.classList.contains(className);Code language: CSS (css)
Posted by: Guest on February-20-2021

Code answers related to "javascript check if class has method"

Code answers related to "Javascript"

Browse Popular Code Answers by Language