There is not a single clear example that explains how to pull json data as simple as possible. I have a valid json and I need to retrieve it with jQuery
my json output i
UPDATE
Its failing due to your url having 2 dots in the url
Assuming the request is working (check firebug to see if the request goes out as a script tag & the response comes back) you will need to do
$.each( json.items, function(){ ... });
or you can use normal js
for (var i=0; i