madeline-s
6/14/2017 - 11:08 PM

Remove empty tags

Remove empty tags

$('h1').each(function(){
       if($(this).is(':empty')){
         $(this).remove()
       }
    });