[jQuery] jsonp to a static remote file
Hello,
Currently I was able to load remote JSON (php) file using JSONP
protocol.
However, how to do if my remote file is static?
In the doc, it said:
you can load JSON data located on another domain if you specify a
JSONP callback, which can be done like so: "myurl?callback=?".
But since my remote file is a static text file, how can I specify the
callback in the output dynamically?
In fact, I also wonder if it is possible to control the random
callback name by modifying jquery source code...