Created
October 15, 2020 19:55
-
-
Save IgorGavrilenko/8ef275b3c1cbdbd3e0116248f0de7c46 to your computer and use it in GitHub Desktop.
empty or not
This file contains 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
$('.el').each(function () { | |
if($.trim($(this).html())==='') { | |
$(this).detach(); | |
} | |
else { | |
$(this).addClass(); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment