Javascript check if div with class exists code example
Example 1: js check for class in classList
element.classList.contains(className);
Example 2: if a class exists jquery
if ($(".mydivclass").length){
// Do something if class exists
} else {
// Do something if class does not exist
}