Side navigation
#9107 closed bug (duplicate)
Opened May 04, 2011 10:40PM UTC
Closed May 04, 2011 10:42PM UTC
Last modified May 04, 2011 10:42PM UTC
.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 );