jquery get all elements inside div code example
Example 1: how to target an element inside of a $(this) jquery
$( this ).find( 'li.target' ).css("border", "3px double red");
Example 2: jquery get all paragraphs
//Get all Paragraphs in the DOM using Jquery
$('p')