Opened 13 years ago
Closed 13 years ago
#6035 closed bug (duplicate)
IE 8 - Chaining remove and appendTo to move multiple child elements between two container elements no longer works in 1.4.x.
Reported by: | pmoriarity | Owned by: | john |
---|---|---|---|
Priority: | major | Milestone: | 1.4.2 |
Component: | manipulation | Version: | 1.4.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Chaining remove and appendTo to move multiple child elements between two container elements no longer works in 1.4.x.
Works in Chrome and Firefox but not IE.
Test in IE 8 here: http://jsfiddle.net/LMGPk/
Sample HTML:
From: <div id="divFrom"> <span>Item 1</span> <span>Item 2</span> <span>Item 3</span> </div> To: <div id="divTo"> </div>
Sample JavaScript:
$("#divFrom span").remove().appendTo("#divTo");
Change History (4)
comment:1 Changed 13 years ago by
comment:4 Changed 13 years ago by
Component: | core → manipulation |
---|---|
Resolution: | → duplicate |
Status: | assigned → closed |
Thanks for spotting the duplicate, I'll tackle it over there.
Note: See
TracTickets for help on using
tickets.
Tried using detach() instead of remove(), same problem.