Issue 3504: [Firebug lite] jQuery.ajax call fails in IE
test markup
Steps to reproduce
- Load Firebug Lite
- Load jQuery
- 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
- The success variable should hold the "true" value after the XHR completes
- There should be one log entry in the Console Panel