This is my simple ajax code which works in FFX and Chrome but not in IE9. I am so much fed up of this browser I can't express. This is my jquery code:
$.ajax({
type: "GET",
dataType: "xml",
crossDomain: true,
cache:false,
url: "http://somedomain.net/folder/ap/connector.php"
}).success(function (result, payPalresult) {
});
inside document.ready and connector.php has
Access-Control-Allow-Origin *
when I checked in Fiddler. Now this code works on FFX and Chrome but no ajax call is ever made in IE9
I even have this:
$.support.cors = true;
Is there anything I am missing at this point? I am making an AJAX request from localhost