jquery on click check if has class code example
Example 1: detect if an element has a class jQurey
$("#EL_ID").hasClass("CLASS_NAME");
Example 2: if element has class jquery
if ($(".mydivclass")[0]){
// Do something if class exists
} else {
// Do something if class does not exist
}