find the CLASS IN JQUERTY code example
Example 1: find class using jquery
var myVar = $("#start").find('.myClass').val();
Example 2: (this).find
$('article a').click(function() {
$(this).parent().find('h3').slideToggle('fast');
});
var myVar = $("#start").find('.myClass').val();
$('article a').click(function() {
$(this).parent().find('h3').slideToggle('fast');
});