In this jquery IE cors plugin ovea/cors git I have raised the following issue because the following feature detection fails in some IE8s
if (!('__jquery_xdomain__' in $)
&& $.browser.msie // must be IE
&& 'XDomainRequest' in window // and support XDomainRequest (IE8+)
&& !('XMLHttpRequest' in window && 'withCredentials' in new XMLHttpRequest()) // and must not support CORS (IE10+)
&& document.location.href.indexOf("file:///") == -1) { // and must not be local
The fix I found is to change
&& !('XMLHttpRequest' in window && 'withCredentials' in new XMLHttpRequest())
to
&& !(window.XMLHttpRequest && 'withCredentials' in new XMLHttpRequest())
The first code gives object expected and the second does not
I would love to know if anyone has an explanation.
To me it seems that there is a situation where XMLHttpRequest returns a truly value but then fail when invoked as a function without the window.