Shouldn\'t follow AJAX request with JQuery work?
$.getJSON(\'https://graph.facebook.com/138654562862101/feed?callback=onLoadJSONP\');
I hav
It has to be "callback=?" and then you define the callback as the last parameter of the request.
$.getJSON("http://api.flickr.com/services/feeds/photos_public.gne?jsoncallback=?",
{
tags: "cat",
tagmode: "any",
format: "json"
},
function(data) {
$.each(data.items, function(i,item){
$("").attr("src", item.media.m).appendTo("#images");
if ( i == 3 ) return false;
});
});