Skip to content

Instantly share code, notes, and snippets.

@mxs
Created September 16, 2012 01:09
Show Gist options
  • Select an option

  • Save mxs/3730656 to your computer and use it in GitHub Desktop.

Select an option

Save mxs/3730656 to your computer and use it in GitHub Desktop.
jquery .get() chaining
$.get("/scottie")
.then(function(data) {
log("received: ", data);
log("GET ", serverbase, "michael");
return $.get('/michael');
})
.then(function(data) {
log("received: ", data);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment