I've got this in my code:
.getJSON("http://myUrl.com", function(data){ alert("callback being called");});
Using a break point in my server side code I can see the jSON stream being returned from the url. Stepping through in Chrome I never see the alert invoked (or any other code inside there). When I look at the network traffic using the chrome developer tools I see that the call is being made to myURl (and I can see the response as the jSON string I'm expecting). It just appears the call back function is never executing.
Anyone have an idea of why it wouldn't be executing?