find an elements parent jquery code example
Example 1: select parent of element jquery
$(this).parent(); // jquery
Example 2: jquery find
$( "li.item-ii" ).find( "li" ).css( "background-color", "red" );
$(this).parent(); // jquery
$( "li.item-ii" ).find( "li" ).css( "background-color", "red" );