Skip to content

Instantly share code, notes, and snippets.

@devdays
Created December 26, 2014 17:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devdays/5587cb5d9b0eff1f48cf to your computer and use it in GitHub Desktop.
Save devdays/5587cb5d9b0eff1f48cf to your computer and use it in GitHub Desktop.
Object JavaScript - Promise with Q and jQuery
var qPromise = Q($.getJSON("data/products.txt"))
.then(function (products) {
$("#products").text(JSON.stringify(products));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment