I have a web application that uses the current version of jQuery, which should return some JSON objects from a REST web service. I use the following call to $ .getJSON:
$. getJSON (" http: // localhost: 17245 / Service.svc /? format = json ", function (data) {alert (data.id);});
This call works fine in IE7, and I can call the service without problems in Fiddler. I went through this in Firebug, but when Firefox gets to this line, javascript execution just seems to be "dying" without errors, without a callback, nothing.
I also used $ .ajax and have the same problem; works fine in IE, nothing in Firefox.
Does anyone have any ideas? I am VERY new to jQuery, so please be careful.
Thanks James
source share