jquery target an element within an element code example
Example 1: jqery slectt div in div
$("div > div", "#tab");
Example 2: how to target an element inside of a $(this) jquery
$( this ).find( 'li.target' ).css("border", "3px double red");
$("div > div", "#tab");
$( this ).find( 'li.target' ).css("border", "3px double red");