Answers for "see if class exists on item js"

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
3

check if js property exists in class

myObj.hasOwnProperty(myProp)
Posted by: Guest on February-12-2020

Code answers related to "see if class exists on item js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language