Skip to content

Instantly share code, notes, and snippets.

@sea-witch
Last active November 12, 2015 21:50
Show Gist options
  • Save sea-witch/0f9b3886fdeb5fdf2dc9 to your computer and use it in GitHub Desktop.
Save sea-witch/0f9b3886fdeb5fdf2dc9 to your computer and use it in GitHub Desktop.
jQuery GET with promises
$.get(URI)
.done(function(data) {
console.log(data)
})
.fail(function() {
console.log('Failure!')
})
.always(function() {
console.log('They do it all the time. Yeah, yeah.')
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment