Created
May 9, 2012 18:01
-
-
Save darkhelmet/2647387 to your computer and use it in GitHub Desktop.
Filter replies to see what people tweet about
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
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