jquwrey find element code example
Example 1: jquery get child div
$(this).children('div').show();
Example 2: (this).find
$('article a').click(function() {
$(this).parent().find('h3').slideToggle('fast');
});
$(this).children('div').show();
$('article a').click(function() {
$(this).parent().find('h3').slideToggle('fast');
});