Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mbarrerar/62d5aefa53a67d43d62114c8538c2870 to your computer and use it in GitHub Desktop.
Save mbarrerar/62d5aefa53a67d43d62114c8538c2870 to your computer and use it in GitHub Desktop.
simple jQuery Deferred example
function getData() {
var deferred = $.Deferred();
$.ajax({
'url': 'http://google.com',
'success': function(data) {
deferred.resolve('yay');
},
'error': function(error) {
deferred.reject('boo');
}
});
return deferred.promise();
}
$.when(getData()).done(function(value) {
alert(value);
});
getData().then(function(value) {
alert(value);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment