find dom element in jquery code example
Example 1: jquery get
$.get( "ajax/test.html", function( data ) {
$( ".result" ).html( data );
alert( "Load was performed." );
});
Example 2: jquery find
$( "li.item-ii" ).find( "li" ).css( "background-color", "red" );