Skip to content

Instantly share code, notes, and snippets.

@mikaelweave
Last active November 9, 2017 16:49
Show Gist options
  • Save mikaelweave/0746d77b64faedabb24f0fd3270b7b09 to your computer and use it in GitHub Desktop.
Save mikaelweave/0746d77b64faedabb24f0fd3270b7b09 to your computer and use it in GitHub Desktop.
Default Ajax
$.ajax({
contentType: 'application/json',
dataType: 'html',
type: 'GET',
async: true,
cache: false,
url: url,
success: function(result) {
},
error: function() {
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment