tags:

views:

23

answers:

2

I have some H3 elements that sometimes are followed by a P element. I would like to check and see if the next element after the h3 is a p, and if not, hide that h3.

+3  A: 
$('h3').each(function(n, e) {
    $(e).next().is('p') || $(e).hide();
});
Scott Evernden
+2  A: 
$('h3').filter(function() { return !$(this).next().is('p') }).hide();
gnarf