Created
April 15, 2013 15:58
-
-
Save adesignl/5389160 to your computer and use it in GitHub Desktop.
Remove all Elements that are empty
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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