Skip to content

Instantly share code, notes, and snippets.

@negipo
Created July 7, 2014 07:55
Show Gist options
  • Save negipo/490c05aac2b03bf2703e to your computer and use it in GitHub Desktop.
Save negipo/490c05aac2b03bf2703e to your computer and use it in GitHub Desktop.
// with dotjs
setInterval(function() {
$('.soundList__item').each(function(idx, item) {
if($(item).find('.soundTitle__info').length > 0) {
$(item).remove();
}
});
}, 2000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment