jqery remove o elemento vazio p
$('p').each(function() {
var $p = $(this);
if($.trim($p.html())==='') {
$p.remove();
}
});
Borma
$('p').each(function() {
var $p = $(this);
if($.trim($p.html())==='') {
$p.remove();
}
});