2010-08-25 4 views

Répondre

6
$('h3').each(function(n, e) { 
    $(e).next().is('p') || $(e).hide(); 
}); 
3
$('h3').filter(function() { return !$(this).next().is('p') }).hide();