Side navigation
#13016 closed bug (invalid)
Opened December 07, 2012 04:07PM UTC
Closed December 22, 2012 08:49AM UTC
jQuery.event.dispatch IE8 bug ( if event.target is removed in "click" handling )
Reported by: | xprommer@gmail.com | Owned by: | xprommer@gmail.com |
---|---|---|---|
Priority: | undecided | Milestone: | None |
Component: | unfiled | Version: | 1.8.3 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
After cur is iterated:
... for ( cur = event.target; cur != this; cur = cur.parentNode || this ) ...
the top element in IE8 won't be a null, it will be #document-fragment,
and
jQuery.find( sel, this, null, [ cur ] )
will be failed with message:
"Object doesn't support property or method 'getAttribute'" in:
function( elem ) { return elem.getAttribute("id") === id; };
Attachments (0)
Change History (3)
Changed December 07, 2012 04:14PM UTC by comment:1
Changed December 07, 2012 04:28PM UTC by comment:2
owner: | → xprommer@gmail.com |
---|---|
status: | new → pending |
Thanks for taking the time to contribute to the jQuery project! Please provide a complete reduced test case on jsFiddle to help us assess your ticket. Additionally, be sure to test against the jQuery Edge version to ensure the issue still exists. To get you started, use this boilerplate: http://jsfiddle.net/FrKyN/. Open the link and click to "Fork" (in the top menu) to get started.
Please be sure your test case is *minimal*, without any additional libraries except jQuery core. If you need more help isolating the problem, please ask for help on the forum.
Changed December 22, 2012 08:49AM UTC by comment:3
resolution: | → invalid |
---|---|
status: | pending → closed |
Because we get so many tickets, we often need to return them to the initial reporter for more information. If that person does not reply within 14 days, the ticket will automatically be closed, and that has happened in this case. If you still are interested in pursuing this issue, feel free to add a comment with the requested information and we will be happy to reopen the ticket if it is still valid. Thanks!
In IE8, after DOMElement is removed, its 'parentNode' won't be a null, it will be #document-fragment