Skip to content

Instantly share code, notes, and snippets.

@haric
Created April 6, 2013 17:02
Show Gist options
  • Select an option

  • Save haric/5326816 to your computer and use it in GitHub Desktop.

Select an option

Save haric/5326816 to your computer and use it in GitHub Desktop.
REST Get with JS
function reqListener () {
// document.write(this.responseText);
document.write(this.response);
};
var oReq = new XMLHttpRequest();
oReq.onload = reqListener;
oReq.open("get", "https://www.googleapis.com/books/v1/volumes?q=quilting", true);
oReq.send();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment