I have a problem, guess what, IE8. The following code, simplified for clarity, does not work at all:
alert('before get'); $.get(getActivityURL('ActionName',{ ts: new Date().getTime(), ...other params...}), {cache:false;}, function (xml) { alert("in get callback"); },'xml');
GetActivityUrl () returns a valid URL with request parameters.
This works correctly in FF and Chrome. However, in IE8, this does not even fall into the $ .get () callback. I get warnings "before" and "after", but not a warning "in", and, really, nothing happens, and the request is NOT sent. I really don't know what to think here.
The response headers are "Content-Type: application / xml; charset: iso-8859-1," as confirmed by FF.
EDIT: $ .post () doesn't work either.
source share