Skip to content

Instantly share code, notes, and snippets.

@abachuk
Created June 12, 2013 16:07
Show Gist options
  • Save abachuk/5766736 to your computer and use it in GitHub Desktop.
Save abachuk/5766736 to your computer and use it in GitHub Desktop.
jquery deferred
var dfd = $.Deferred();
var endpoint = $.ajax({
url: 'http://yourdomain.com/data.json',
sucess: dfd.resolve
});
endpoint.success(function(data){console.log(data)});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment