Modify ↓
Ticket #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: | ||
| Blocking: | Blocked by: |
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
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.
