Questions tagged [xdomainrequest]

The XDomainRequest object is implemented in Internet Explorer 8–10 and can be used to do cross-domain asynchronous requests and it also has support for streaming the content.

The XDomainRequest object was implemented in IE8 and can be used to do cross-domain asynchronous requests. It also has support for streaming the content.

Eric Law has explained its use in an IEInternals blog post: COMET Streaming in Internet Explorer

122 questions
-1
votes
1 answer

Vanilla JavaScript CORS request with XDomainRequest in IE8 not working

I try to build a simple wrapper function for making CORS Ajax requests in IE 8: function getCORS(url, success) { var xhr = new XDomainRequest(); xhr.open('GET', url); xhr.onload = success; xhr.send(); return…
Simon Steinberger
  • 5,935
  • 3
  • 42
  • 87
-1
votes
1 answer

Unexpected call to method or property access on XDomainRequest onload

IE kept throwing "Unexpected call to method or property access" for no apparent reason. Debbuging via console I've found out that it happens exactly after it reaches XDomainRequest.onload method, I have no idea what could be causing it, here's the…
1 2 3
8
9