If Class Exists Jquery Add Class Code Example


Example 1: jquery check if a class exists


if ($(".mydivclass")[0]){
// Do something if class exists
} else {
// Do something if class does not exist
}

Example 2: if a class exists jquery


if ($(".mydivclass").length){
// Do something if class exists
} else {
// Do something if class does not exist
}

Comments

Popular posts from this blog

530 Valid Hostname Is Expected When Setting Up IIS 10 For Multiple Sites

C Perror Example

Converting A String To Int In Groovy