Modify ↓
Ticket #8110 (closed bug: worksforme)
Ajax abort throws false error event in IE
| Reported by: | kwooda@… | Owned by: | |
|---|---|---|---|
| Priority: | undecided | Milestone: | 1.next |
| Component: | ajax | Version: | git |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
Open your IE browser. Go to http://jsfiddle.net/jitter/HHwrT/ Select the latest (GIT) code. Type into the input field and watch the sparks fly. The abort condition incorrectly fires an error event. There is a bad line of code in the jQuery code base: Function.prototype.call.call( oldAbort, xhr ); Change this to Function.prototype.call( oldAbort, xhr ); and the problem goes away. Problem solved. Make it happen, please.
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

Thanks for taking the time to submit a bug report! However, that line of code isn't in the ajax code, perhaps you had an old git copy cached?
http://jsfiddle.net/danheberden/HHwrT/16/
Works fine in IE8