jquery reference specific class instance code example
Example 1: how to find a name of class from page in jquery
if ($('.Mandatory').length > 0) {
//do your thing
}
Example 2: how to find a name of class from page in jquery
$('.Mandatory').each(function(){
//do your thing
});