Skip to content

Instantly share code, notes, and snippets.

@pavsmk
Last active December 13, 2015 16:05
Show Gist options
  • Save pavsmk/e618ac0783d37e054031 to your computer and use it in GitHub Desktop.
Save pavsmk/e618ac0783d37e054031 to your computer and use it in GitHub Desktop.
$.ajax({
url: '/path/to/file',
type: 'default GET (Other values: POST)',
dataType: 'default: Intelligent Guess (Other values: xml, json, script, or html)',
data: {param1: 'value1'},
})
.done(function() {
console.log('success');
})
.fail(function() {
console.log('error');
})
.always(function() {
console.log('complete');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment