The short version:
I want to get this to work with this:
The long version:
I want to create a jQuery extension that adds a progress method to the $.ajax object and which works with IE8 & IE9's XDomainRequest object.
Currently, using the above plugins, I can only define progress event callback handlers for XMLHttpRequest objects.
However, XDomainRequest also provides an onprogress event. I basically need a wrapper for XDomainRequest. Eg. progressEvent.length would correspond to xdr.responseText.length.
I'd appreciate any suggestions on where to begin.