I am sending ajax request to a url http://json-cricket.appspot.com/score.json by the code

var url="http://json-cricket.appspot.com/score.json";
$.get(url, function (data) {
    console.log(data);
}, 'json');

and this is not working, but if I add '?callback=?' to the url, then it will work. i.e.

var url="http://json-cricket.appspot.com/score.json?callback=?";
$.get(url, function (data) {
    console.log(data);
}, 'json');

Then it will work.

Both url will give the output. Only the difference is the the latter one will wrap the results on ?(result).

For my knowledge, can anyone explain me what is happening? It was taken from here.

Any link for further study would be highly appreciable.

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

It is because it is a cross-domain ajax request.

For more info, you can have a look at the wikipedia article http://en.wikipedia.org/wiki/JSON#JSONP

link|improve this answer
feedback

have a look at this getJson

link|improve this answer
1  
Whilst this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference. – Benjol Mar 1 '11 at 11:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.