Try...
$('div.myDiv p:not(:first-child)').hide();

On Nov 16, 9:17 pm, skube <[EMAIL PROTECTED]> wrote:
> 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