Answers for "javascript check if class has property"

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language