$('p').each(function() { var $p = $(this); if($.trim($p.html())==='') { $p.remove(); } });
//if empty remove parent $('#id:empty').parent().remove();