Answers for "how to find if an element with specific class name is present in the dom or not?"

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

Code answers related to "how to find if an element with specific class name is present in the dom or not?"

Code answers related to "Javascript"

Browse Popular Code Answers by Language