<script> $("p").each(function(){ if( $.trim($(this).text()) == "" ){ $('p:empty').remove(); } }); </script>