Skip to content

Instantly share code, notes, and snippets.

@brianc
Created August 9, 2013 19:51
Show Gist options
  • Save brianc/6196641 to your computer and use it in GitHub Desktop.
Save brianc/6196641 to your computer and use it in GitHub Desktop.
$('.username').map(function() {
var d = $(this).siblings('img').data();
if(d && /[0-9_]/.test($(this).text())) {
$.post('/i/user/block', {authenticity_token:'<PUT YOURS HERE>', user_id:d.userId});
return $(this).text()
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment