#9107 closed bug (duplicate)
.append() with multiple elements on IE7+ causes endless loop in jquery
Reported by: | Indoom | Owned by: | |
---|---|---|---|
Priority: | high | Milestone: | 1.next |
Component: | manipulation | Version: | 1.6 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
When appending more then 2 elements on quirks mode, it makes IE7+ go in endless loop. Or if doctype is set, then just IE7. Haven't tested on IE6. If append() has two elements, then it appends only the first, but no endless loop then
var div1 = $("<div>"), div2 = $("<div>"), div3 = $("<div>"); $("body").append( div1, div2, div3 );
Change History (2)
comment:1 Changed 12 years ago by
Component: | unfiled → manipulation |
---|---|
Priority: | undecided → high |
Resolution: | → duplicate |
Status: | new → closed |
comment:2 Changed 12 years ago by
Note: See
TracTickets for help on using
tickets.
Duplicate of #9072.