I have a call to get a JSON object (it happens to be the contents of a Domino view), which I will then parse for display. The anonymous function has code in it, but that is not relevant here, for it never gets called. Stepping through in debug (I am using Chrome), execution skips straight from the $.get to the next line without ever entering the success handler. The behaviour is the same whether I use .get() or .getJSON().
$.get(strURL,
function(data) {}
)
I have tested the URL, and confirmed via JSONLint that it is returning valid JSON. How can I determine what is causing the failure?