find all div with class jquery code example
Example 1: get all classes of element jquery
var classList = $('#divId').attr('class').split(/\s+/);
$.each(classList, function(index, item) {
if (item === 'someClass') {
//do something
}
});
Example 2: find class using jquery
var myVar = $("#start").find('.myClass').val();
Example 3: jquery get all value from class
var ek = $('.seconds').map((_,el) => el.value).get()
console.log(ek)
Example 4: how to find a name of class from page in jquery
if ($('.Mandatory').length > 0) {
//do your thing
}