Skip to content

Instantly share code, notes, and snippets.

@mishak87
Created July 14, 2013 04:28
Show Gist options
  • Save mishak87/5993215 to your computer and use it in GitHub Desktop.
Save mishak87/5993215 to your computer and use it in GitHub Desktop.
Ignore people in chat
var blacklist = ['mishak','mullick'];
setInterval(function () {
$('#chatcontent > div').each(function(i,v){if(-1!=$.inArray($('span', v).text(), blacklist))$(v).hide();});
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment