I am using Jquery 1.6.2.
This works:
$.getJSON("http://b.webvm.net/?jsoncallback=?",
function(data) {
alert("OK");
});
});
but this does not:
$.getJSON("http://isp123.co.uk/cw/NorthWales/test.txt?jsoncallback=?",
function(data){
alert("OK");
});
});
Both remote files look identical:
http://b.webvm.net/?jsoncallback=?
and
http://isp123.co.uk/cw/NorthWales/test.txt?jsoncallback=?
however the alert message never gets fired on the second example.