jQuery seleccione niños inmediatos
// Use the .children() function, which is like .find(), but only
// searches immediate children.
$('div').children('p');
2Bowls
// Use the .children() function, which is like .find(), but only
// searches immediate children.
$('div').children('p');