I am trying to get some JSONP from the Flickr API to work with:
$.getScript('http://api.flickr.com/services/feeds/photos_public.gne?format=json&tags=cats', function(data, textStatus, jqxhr) {
alert(data);
});
The alert gives undefined
and the console says:
Uncaught ReferenceError: jsonFlickrFeed is not defined
Is there something wrong with the Flickr API response or is there a way to get this to work after all?
http://api.flickr.com/services/feeds/photos_public.gne?format=json&tags=cats