jquery find element inside element code example
Example 1: find class using jquery
var myVar = $("#start").find('.myClass').val();
Example 2: jquery find
$( "li.item-ii" ).find( "li" ).css( "background-color", "red" );
Example 3: (this).find
$('article a').click(function() {
$(this).parent().find('h3').slideToggle('fast');
});