Skip to content

Instantly share code, notes, and snippets.

@floster
Last active November 13, 2015 10:26
Show Gist options
  • Save floster/33db68d368050ad1405f to your computer and use it in GitHub Desktop.
Save floster/33db68d368050ad1405f to your computer and use it in GitHub Desktop.
JSON "not well-formated"
$.ajaxSetup({ // if Firefox => JSON "not well-formated"
beforeSend: function(xhr){
if (xhr.overrideMimeType)
{
xhr.overrideMimeType("application/json");
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment