JSONP Callback - JQuery and other frameworks

52 Views Asked by At

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});
1

There are 1 best solutions below

1
On

What would be the issues of using a fixed name such as "jsonp"?

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.