Created
July 7, 2014 07:55
-
-
Save negipo/490c05aac2b03bf2703e to your computer and use it in GitHub Desktop.
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
// 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