Answers for "javascript html element has classname"

48

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

javascript hasclass

if (document.body.classList.contains('thatClass')) {
    // do some stuff
}
Posted by: Guest on April-02-2020

Code answers related to "javascript html element has classname"

Code answers related to "Javascript"

Browse Popular Code Answers by Language