My code works fine in jquery 1.4 and i try upgrade it to 1.5. But this part of code stop working - its standard beforeSend handler

beforeSend: function (xhr, options) {
//
__forced_abort = false;

//
xhr.upload.addEventListener('progress', on_progress, false);
xhr.upload.addEventListener('load', on_loaded, false);
xhr.addEventListener('abort', on_abort, false);
....

I know that in 1.5 havent really xhr - just jqXHR highlevel abstraction and seems to be jqXHR not have upload attributes.

Question: how get pure (old) xhr object in jQuery 1.5?

link|improve this question
feedback

2 Answers

If your beforeSend was global:

var oldXHR = jQuery.ajaxSettings.xhr;
jQuery.ajaxSettings.xhr = function() {
    var xhr = oldXHR();
    if(xhr instanceof window.XMLHttpRequest) {
        xhr.upload.addEventListener('progress', on_progress, false);
        xhr.upload.addEventListener('load', on_loaded, false);
        xhr.addEventListener('abort', on_abort, false);
    }
    return xhr;
};

If your beforeSend was specific to a particular request:

$.ajax({
    xhr: function() {
        var xhr = jQuery.ajaxSettings.xhr();
        if(xhr instanceof window.XMLHttpRequest) {
            xhr.upload.addEventListener('progress', on_progress, false);
            xhr.upload.addEventListener('load', on_loaded, false);
            xhr.addEventListener('abort', on_abort, false);
        }
        return xhr;
    }
});
link|improve this answer
does this work for anyone? – James Reategui Nov 11 '11 at 21:24
Doesn’t it work for you? – Raphael Schweikert Nov 12 '11 at 7:13
1  
looks like it should be xhr: function(){ – Adam Hutchinson Jan 21 at 22:16
Thanks, corrected. – Raphael Schweikert Jan 24 at 18:02
feedback

Try use jQuery.ajaxSettings.xhr()

link|improve this answer
Use as? Can u give a little example? – dimkalinux Feb 6 '11 at 20:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.