This snippet will grab any
tags that are empty (bugs), and remove them.
$(document).ready(function() {
$('p').each(function() {
var $this = $(this);
if($this.html().replace(/\s| /g, '').length == 0)
$this.remove();
});
});