Skip to content

Instantly share code, notes, and snippets.

@GirlBossRush
Created August 22, 2013 09:32
Show Gist options
  • Save GirlBossRush/6305115 to your computer and use it in GitHub Desktop.
Save GirlBossRush/6305115 to your computer and use it in GitHub Desktop.
$('#delete-token').click(function() {
$this = $(this);
$.ajax({
type: "post",
url: "/groups/4/account/delete_token",
success: function(data) {
$("#direct_join").fadeOut(150, function() {
$(this).html('');
});
$this.fadeOut(150);
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment