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
2010-08-26 00:03:05
+2
A:
$('h3').filter(function() { return !$(this).next().is('p') }).hide();
gnarf
2010-08-26 00:05:17