Skip to content

Instantly share code, notes, and snippets.

@uhtred
Created March 22, 2016 18:36
Show Gist options
  • Save uhtred/6c283ed880ed97004ac8 to your computer and use it in GitHub Desktop.
Save uhtred/6c283ed880ed97004ac8 to your computer and use it in GitHub Desktop.
JS: Jquery Rest Config
$.ajaxSetup({
contentType: 'application/json',
dataType: "json",
contentType: 'application/json'
});
$.ajaxPrefilter(function(options, originalOptions) {
if(options.type === 'post') {
options.data = JSON.stringify(originalOptions.data);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment