Skip to content

Instantly share code, notes, and snippets.

@arthuralee
Created July 20, 2014 22:04
Show Gist options
  • Save arthuralee/58fae58a4b7018432bef to your computer and use it in GitHub Desktop.
Save arthuralee/58fae58a4b7018432bef to your computer and use it in GitHub Desktop.
jQuery postJSON
jQuery.extend({
postJSON: function(url, data, callback) {
return jQuery.ajax({
type: "POST",
url: url,
data: JSON.stringify(data),
success: callback,
dataType: "json",
contentType: "application/json",
processData: false
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment