Answers for "how to check css add on class exists in jquery"

CSS
1

if a class exists jquery

if ($(".mydivclass").length){
    // Do something if class exists
} else {
    // Do something if class does not exist
}
Posted by: Guest on November-28-2020

Code answers related to "how to check css add on class exists in jquery"

Browse Popular Code Answers by Language