Skip to content

Instantly share code, notes, and snippets.

@darkhelmet
Created May 9, 2012 18:01
Show Gist options
  • Save darkhelmet/2647387 to your computer and use it in GitHub Desktop.
Save darkhelmet/2647387 to your computer and use it in GitHub Desktop.
Filter replies to see what people tweet about
javascript:(function() {
setInterval(function() {
$('#stream-items-id .stream-item:has(.twitter-atreply)').each(function(i, e) {
var $e = $(e);
var firstChild = $($e.find('.js-tweet-text').get(0).childNodes[0]);
if (firstChild.is('a.twitter-atreply')) {
$e.fadeOut(function() {
$(this).remove();
});
}
});
}, 1000);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment