Opened 10 years ago
Closed 10 years ago
#13016 closed bug (invalid)
jQuery.event.dispatch IE8 bug ( if event.target is removed in "click" handling )
Reported by: | Owned by: | ||
---|---|---|---|
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; };
Change History (3)
comment:1 Changed 10 years ago by
comment:2 Changed 10 years ago by
Owner: | set to [email protected]… |
---|---|
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.
comment:3 Changed 10 years ago by
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