Shouldn't follow AJAX request with JQuery work?
$.getJSON('https://graph.facebook.com/138654562862101/feed?callback=onLoadJSONP');
I have defined a callback function named "onLoadJSONP".
But Chrome gives me a typical Same-Origin-Policy error:
XMLHttpRequest cannot load https://graph.facebook.com/138654562862101/feed?callback=onLoadJSONP. Origin null is not allowed by Access-Control-Allow-Origin.
I thought JSONP worked arround that, what am i doing wrong?
