Skip to content

Instantly share code, notes, and snippets.

@w3cj
Last active November 12, 2015 05:14
Show Gist options
  • Save w3cj/880dd085e907ac1f7540 to your computer and use it in GitHub Desktop.
Save w3cj/880dd085e907ac1f7540 to your computer and use it in GitHub Desktop.
var booksAPI = 'https://www.googleapis.com/books/v1/volumes?q=';
var search = 'Hitchikers Guide To the Galaxy';
$.getJSON(booksAPI + search, function(data) {
console.log(data)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment