Created
June 12, 2010 00:26
-
-
Save cncolder/435234 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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