jQuery Child Selectors
In jQuery, you can select the child elements of p that are contained directly within div:
$('div > p');
Get and color red all i immediately inside h2.
In jQuery, you can select the child elements of p that are contained directly within div:
$('div > p');
Get and color red all i immediately inside h2.