Skip to content

Instantly share code, notes, and snippets.

@jaredfaris
Created July 4, 2012 21:11
Show Gist options
  • Save jaredfaris/3049538 to your computer and use it in GitHub Desktop.
Save jaredfaris/3049538 to your computer and use it in GitHub Desktop.
Functionalizing JavaScript 2
$('#someElement').on('click',
function() {
var objectId = getObjectId();
$.ajax({
url: "/some/path",
type: "POST",
data: {
objectId: objectId
},
success: handleSuccess
})
}
);​
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment