Can I use a static (i.e., predetermined) callback function name when requesting JSONP with jQuery?
The jQuery documentation lists the following example of using $.getJSON to request JSONP: $.getJSON("http://api.flickr.com/services/feeds/photos_public.gne?tags=cat&tagmode=any&format=json&jsoncallback=?", function(data) { $.each(data.items, function(i,item) { $("<img/>").attr("src", item.media.m).appendTo("#images"); if (i == 3) return false; }); }); Rather than use this method, which generates a dynamic callback function name because of this parameter: jsoncallback=? I want to be able to set that in advance to a hardcoded function name, like this: jsoncallback=test This works, in the sense