Issue 3504: [Firebug lite] jQuery.ajax call fails in IE

    test markup

    Steps to reproduce

    1. Load Firebug Lite
    2. Load jQuery
    3. Execute the following code:
            var success = false;
            
            $.ajax({
                url: "test.txt",
                success: function() {
                    success = true;
                },
                complete: function() {
                    // success variable should hold the "true" value here
                }
            });
                    

    Expected Result