Skip to content

Instantly share code, notes, and snippets.

@cncolder
Created June 12, 2010 00:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cncolder/435234 to your computer and use it in GitHub Desktop.
Save cncolder/435234 to your computer and use it in GitHub Desktop.
// Live is new method in jQuery 1.4+.
$('a[data-confirm]').live('click', function () { ... });
// When user click the link. jQuery will handle it and send a ajax request.
$.ajax({
url: "/users/new",
dataType: "script",
...
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment