Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.