I am using jQuery and Backbone. I’m new to js. I can get it to display in an alert, but I want to throw info into the body.
something like:
var jsonData = $.get("https://www.googleapis.com/shopping/search/v1/public/products?key=key&country=US&q=digital+camera&alt=json");
$('body').append(jsonData);
1 Answer