Why do JQuery and other Javascript frameworks (angularjs etc) make up the name of the callback function?
What would be the issues of using a fixed name such as "jsonp"?
JSONP:
jsonp({"Name": "Foo", "Id": 1234, "Rank": 7});
Why do JQuery and other Javascript frameworks (angularjs etc) make up the name of the callback function?
What would be the issues of using a fixed name such as "jsonp"?
JSONP:
jsonp({"Name": "Foo", "Id": 1234, "Rank": 7});
Copyright © 2021 Jogjafile Inc.
If you have two parallel request, you will need to know which of them loaded. Admittedly, there are other ways to find out, but just using different callbacks with different names is the easiest.