Why is $.support.cors false in IE 11? I'm using jquery 1.9.1 ($.fn.jquery == '1.9.1').
$.support.cors is true in Chrome with the same version of jquery.
Why is $.support.cors false in IE 11? I'm using jquery 1.9.1 ($.fn.jquery == '1.9.1').
$.support.cors is true in Chrome with the same version of jquery.
$.support.corsdoes returntruein IE 11, as demonstrated by this fiddle:http://jsfiddle.net/dM8pk/
X-UA-Compatibleset toIE=9disables cors support.The following will output "true" in IE 11
But with
<meta http-equiv="X-UA-Compatible" content="IE=9">will output "false"