#5829 closed bug (fixed)
appendTo broken in IE6
Reported by: | DCameronMauch | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.4.2 |
Component: | manipulation | Version: | 1.4.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
$('select#left option:selected').remove().appendTo('select#right');
works in 1.3.2 with FF and IE6 with 1.4, still works with FF, but only appends first option with IE6
Change History (6)
comment:1 Changed 13 years ago by
comment:2 Changed 13 years ago by
I'm seeing the same issue in IE 6, 7, and 8 with jQuery 1.4. I tried using the following code ($newItems is a group of <li>s, and $col is a <ul>):
$newItems.appendTo($col);
However, as stated above, this only brought over the first <li>. Doing it this way works perfectly as expected:
$col.append($newItems);
comment:3 Changed 13 years ago by
Also worth noting... both my example and DCameronMauch's are using appendTo() following a remove(). Perhaps that could help narrow down the possibilities.
comment:4 Changed 13 years ago by
Still broken with jQuery 1.4.1. I use this method alot, so I can't switch until this is fixed... Is this not a serious enough bug for someone to at least look at?
comment:6 Changed 13 years ago by
Component: | core → manipulation |
---|---|
Milestone: | 1.4 → 1.4.2 |
Resolution: | → fixed |
Status: | new → closed |
Version: | 1.4 → 1.4.1 |
<html>
</html>