Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Format wise, file type wise and practical use wise?

share|improve this question
4  
See Please explain JSONP. – Matthew Flaschen May 22 '10 at 6:57
Thanks for the link, there's some really good information there. – Mohammad May 22 '10 at 7:20
1  
Is one method faster than the other? For example, if you use XMLHttpRequest to GET a request (to the same domain obviously since it's 'normal' ajax), or if you use the JSONP method (which won't use the XMLHTTPRequest) - will one be faster than the other? I know it depends on several factors - but did someone do speed comparisons? – Yuval A. Jan 23 '12 at 21:19

5 Answers

up vote 86 down vote accepted

JSONP is JSON with padding, that is, you put a string at the beginning and a pair of parenthesis around it. For example:

//JSON
{"name":"stackoverflow","id":5}
//JSONP
func({"name":"stackoverflow","id":5});

The result is that you can load the json as a script file. If you previously set up a function called func, then that function will be called with one argument, which is the json data, when the script file is done loading. This is usually used to allow for cross-site AJAX with JSON data. If you know that example.com is serving json files that look like the JSONP example given above, then you can use code like this to retrieve it, even if you are not on the example.com domain:

function func(json){
  alert(json.name);
}
var elm = document.createElement("script");
elm.setAttribute("type", "text/javascript");
elm.src = "http://example.com/jsonp";
document.body.appendChild(elm);
share|improve this answer

JSONP allows you to specify a callback function that is passed your JSON object. This allows you to bypass the same origin policy and load JSON from an external server into the javascript on your webpage.

share|improve this answer

JSONP is essentially, JSON with extra code, like a function call wrapped around the data. It allows the data to be acted on during parsing.

share|improve this answer

http://bob.pythonmac.org/archives/2005/12/05/remote-json-jsonp/

It sounds like JSONP is a method for grabbing JSON from a different domain. It's not a separate language.

share|improve this answer
Separate from what? JSON isn't a language either – nickf May 22 '10 at 7:25
3  
@nickf: Yeah...I was looking for the right word... what would you call it then? "data-interchange format" according to json.org. – Mark May 22 '10 at 22:44

“JSONP is JSON with extra code” would be too easy for the real world. No, you gotta have little discrepancies. What’s the fun in programming if everything just works?

Turns out JSON is not a subset of JavaScript. If all you do is take a JSON object and wrap it in a function call, one day you will be bitten by strange syntax errors, like I was today.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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