jquery if found element by class code example
Example: if a class exists jquery
if ($(".mydivclass").length){
// Do something if class exists
} else {
// Do something if class does not exist
}
if ($(".mydivclass").length){
// Do something if class exists
} else {
// Do something if class does not exist
}