Side navigation
#2169 closed bug (duplicate)
Opened January 15, 2008 09:17PM UTC
Closed January 18, 2008 03:32AM UTC
1.2.2 Regression with .clone() of "tr" elements in IE 6
Reported by: | ieure | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.2.3 |
Component: | core | Version: | 1.2.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
1.2.2 broke .clone()
of <tr> elements in IE 6. 1.2.1 works fine.
Testcase attached. If you
Attachments (1)
Change History (2)
Changed January 17, 2008 05:21PM UTC by comment:1
Changed January 18, 2008 03:32AM UTC by comment:2
resolution: | → duplicate |
---|---|
status: | new → closed |
I'm going to close this as a duplicate of #2184 since I posted the possible patch there and it covers tr as well as some other table elements. I'll link back to this one for the additional information though.
Description is cut off. Should say:
If you swap the version of jQuery in the header, you’ll be able to confirm that it works in IE with 1.2.1, but breaks with 1.2.2.
The issue is the
clone()
call. If you examine the cloned items, you can see that they are empty - they have properties, but nothing is set; eventagName
isundefined
. This causes theinsertBefore()
call to fail.Testcase shows that the problem only affects
<tr>
elements- the<div>
s continue to work.