how to find element by id in jquery code example
Example 1: get element by id jqueryt
$( "#myDiv" )
Example 2: how to target an element inside of a $(this) jquery
$( this ).find( 'li.target' ).css("border", "3px double red");
$( "#myDiv" )
$( this ).find( 'li.target' ).css("border", "3px double red");