Skip to content

Instantly share code, notes, and snippets.

@adesignl
Created April 15, 2013 15:58
Show Gist options
  • Save adesignl/5389160 to your computer and use it in GitHub Desktop.
Save adesignl/5389160 to your computer and use it in GitHub Desktop.
Remove all Elements that are empty
var optionsEmpty = ' h1, h2, h3, h4, h5, h6 '; // Change these according to your needs
$(optionsEmpty).each(function() {
var $this = $(this);
if($this.html().replace(/\s| /g, '').length == 0){ // May could beter this later but works in most curcumstances
$this.remove();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment