Answers for "check if property has class"

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 "check if property has class"

Code answers related to "Javascript"

Browse Popular Code Answers by Language