jquery the div inside of element code example
Example 1: jquery get all paragraphs
//Get all Paragraphs in the DOM using Jquery
$('p')
Example 2: jquery select element inside element
$("#moo") > $("#foo #moo") > $("div#foo span#moo") > $("#foo span") > $("#foo > #moo")