Skip to content

Instantly share code, notes, and snippets.

@mvark
Last active August 29, 2015 14:10
Show Gist options
  • Save mvark/473f8d96d8cf6b24423d to your computer and use it in GitHub Desktop.
Save mvark/473f8d96d8cf6b24423d to your computer and use it in GitHub Desktop.
$.getJSON("https://spreadsheets.google.com/feeds/list/insert-spreadsheet-key/od6/public/values?alt=json", function(data) {
for (var i = 0; i < data.feed.entry.length; i++){
//first row "bookname" & "price" columns
$('#results').append(data.feed.entry[i].gsx$bookname.$t + " Price: " + data.feed.entry[i].gsx$price.$t + "<br/>");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment