Skip to content

Instantly share code, notes, and snippets.

@Chavao
Created April 25, 2012 02:22
Show Gist options
  • Save Chavao/2485583 to your computer and use it in GitHub Desktop.
Save Chavao/2485583 to your computer and use it in GitHub Desktop.
Remover todos os tweets que foram enviados como replies/mention.
$('.js-tweet-text').each(function() { if($(this).text().match(/^@/g)) $(this).closest('.tweet').remove(); });
@Chavao
Copy link
Author

Chavao commented Apr 25, 2012

Remover da exibição e não remover da conta.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment