Skip to content

Instantly share code, notes, and snippets.

@er1c
Created December 13, 2011 03:41
Show Gist options
  • Save er1c/1470440 to your computer and use it in GitHub Desktop.
Save er1c/1470440 to your computer and use it in GitHub Desktop.
$(".resend_auth").live("click", (e)
e.preventDefault()
var link = $(this)
$.ajax({
url: link.attr("href"),
dataType: "json",
success: function(json) {
alert(json.msg)
}
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment