Ajax request "Access is denied" in IE
ajax, javascript, jquery
Solution
For my case the problem is resulted because of compatibility mode. I am in intranet and internet explorer is running with compatibility mode. I added following tag and this solved all my problems. It forces IE to not use compatibility mode.
<meta http-equiv="X-UA-Compatible" content="IE=Edge" >
Problem
I use ajax request in order to check response of websites as follow, ``` $.ajax ({ url: 'https://www.example.com', cache: false, success : function() { alert(new Date() - start) }, }) ``` It works on my local pc in all browsers. When I put it on the server, it works in Chrome and Firefox but not in IE8. I get the error: `"Access is denied" jquery.min.js` Why am I getting this error?