This was working earlier today. I'm not sure why it is broken now. I'm doing the following:
$.getJSON( "http://ip.jsontest.com/", function( data ){
console.log(data);
});
And keep getting this error:
XMLHttpRequest cannot load http://ip.jsontest.com/. Origin http://fiddle.jshell.net is not allowed by Access-Control-Allow-Origin.
If you look at this example http://jsfiddle.net/ZfvKm/2/, it is also doing an external call without issue. What am I doing wrong?