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