The platform I\'m building a website on produces empty p tags in wysiwyg mode. How can I take these out?
p
Something like this, perhaps...
$
/* Remove empty paragraphs with */ jQuery('p').each(function(){ if( jQuery(this).html() == ' ' ) jQuery(this).remove(); })