Side navigation
#8110 closed bug (worksforme)
Opened February 01, 2011 12:53AM UTC
Closed February 01, 2011 05:42AM UTC
Ajax abort throws false error event in IE
Reported by: | kwooda@gmail.com | Owned by: | |
---|---|---|---|
Priority: | undecided | Milestone: | 1.next |
Component: | ajax | Version: | git |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
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.
Attachments (0)
Change History (1)
Changed February 01, 2011 05:42AM UTC by comment:1
component: | unfiled → ajax |
---|---|
resolution: | → worksforme |
status: | new → closed |
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