Skip to content

Instantly share code, notes, and snippets.

@IgorGavrilenko
Created October 15, 2020 19:55
Show Gist options
  • Save IgorGavrilenko/8ef275b3c1cbdbd3e0116248f0de7c46 to your computer and use it in GitHub Desktop.
Save IgorGavrilenko/8ef275b3c1cbdbd3e0116248f0de7c46 to your computer and use it in GitHub Desktop.
empty or not
$('.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