jQuery sélectionne les enfants immédiats

// Use the .children() function, which is like .find(), but only
// searches immediate children.

$('div').children('p');
2Bowls