Question

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.

Was it helpful?

Solution

$('h3').each(function(n, e) {
    $(e).next().is('p') || $(e).hide();
});

OTHER TIPS

$('h3').filter(function() { return !$(this).next().is('p') }).hide();
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top