Skip to content

Instantly share code, notes, and snippets.

@tal
Created October 27, 2009 14:56
Show Gist options
  • Save tal/219616 to your computer and use it in GitHub Desktop.
Save tal/219616 to your computer and use it in GitHub Desktop.
$('.unfollow-button').live('click',function(e){
var uid = this.id.match(/fol-(\d+)/)[1];
var button = this;
$.post("/unfollow/"+uid+"?ajax",{},function(data){
$(button).removeClass('.unfollow-button').addClass('.follow-button');
},'json');
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment