Top "Xdomainrequest" questions

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.

CORS with jQuery and XDomainRequest in IE8/9

UPDATE: I highly recommend not investing any time in XDomainRequest, because it is a terribly poor implementation with many limitations. …

jquery internet-explorer-9 xdomainrequest
XDomainRequest problem

I'm trying to make a asynchronous call to a service that returns json using XDomainRequest (IE8). The problem is that …

javascript ajax xdomainrequest
Access is denied error on XDomainRequest

I'm trying to use microsoft XDomainRequest to send cross domain request. Here is the code ... if ($.browser.msie && …

javascript internet-explorer cross-domain xdomainrequest
Setting headers in XDomainRequest or ActiveXObject('Microsoft.XMLHTTP')

I'm trying to do something like this (W3 compliant, DOM): xhr.setRequestHeader( 'X-Requested-With', 'XMLHttpRequest' ); For ActiveXObject('Microsoft.XMLHTTP') and XDomainRequest (…

javascript ajax internet-explorer xmlhttprequest xdomainrequest
Make a CORS request in IE9 with cookies?

In IE9, I am attempting to make a cross origin request with cookies. However, even when I have the Access-Control-Allow-Origin, …

cookies internet-explorer-9 xdomainrequest
cross-origin header in IE8/IE9

Since jQuery ajax ist not working for CORS/IE, I'm using XDomainRequest to retreive data from another Server. Work's fine, …

javascript jquery internet-explorer cors xdomainrequest
AJAX cross-domain request IE 8+

How to correct rewrite the Ajax request to make it work in IE 8 +, using XDomainRequest? $.ajax({ type: "GET", url: url, …

javascript jquery ajax internet-explorer xdomainrequest
IE, XDomainRequest not always work

I am trying to do cross-domain on IE. I used XDomainRequest, and implanted logging for all events (onerror, onload, onprogress …

javascript internet-explorer cross-domain xdomainrequest