IE11 Not Initiating CORS Request
By fiddling it seems IE11 does not make an ajax request if it is cross origin. FF and Chrome will at least make the request and throw an error if the resource API is not sending ne
Solution 1:
I was having the same problem. I was unable to retrieve any CORS data using XMLHttpRequest(), $.ajax() or $.ajax shortcuts. The problem turned out to be localhost (IIS WinPro7). Every AJAX CORS request was preflighted which generated an
Origin http://localhost not found in Access-Control-Allow-Origin header
error, followed by
XMLHttpRequest: Network Error 0x80070005, Access is denied
When I moved the HTML page to a webserver it worked fine.
Post a Comment for "IE11 Not Initiating CORS Request"