findclass in jquery code example
Example 1: find class using jquery
var myVar = $("#start").find('.myClass').val();
Example 2: how to find a name of class from page in jquery
if ($('.Mandatory').length > 0) {
//do your thing
}
var myVar = $("#start").find('.myClass').val();
if ($('.Mandatory').length > 0) {
//do your thing
}