May 2011
1 post
Cross-Origin Resource Sharing and IE9
If you want to save yourself an afternoon debugging. Please be aware that the onprogress event must be set on the XDomainRequest object.
If the onprogress event is undefined. Internet Explorer 9 will just abort the request.
For example:
var xhr = new XDomainRequest();
xhr.open('POST', 'http://example.com/resource');
xhr.onprogress = function() {}; // <-- IE9 will abort if...