I\'m making a jQuery $.getJSON request to another domain, so am making sure that my GET URI ends with \"callback=?\" (i.e. using JSONP).
$.getJSON
The NET panel o
It looks like you're misusing JSONP in your server script.
When you receive a request with a callback parameter, you should render the following:
callbackName({ "myName": "myValue"});
Where callbackName is the value of the callback parameter.
callbackName