I figured out the following works:

$('div.myDiv').each(function(){
  $(this).children('p').not(':first').hide();
})

However it still seems like there must be a better way. Anyone?

Reply via email to