Today I stumbled on createDocumentFragment. I was wondering if the DocumementFragment is supported, and how, on the different browsers, expecially IE series.
Anyone knows anything about this subject?
Today I stumbled on createDocumentFragment. I was wondering if the DocumementFragment is supported, and how, on the different browsers, expecially IE series.
Anyone knows anything about this subject?
Yep, it's fully supported in all modern browsers (including IE6).
See: http://www.quirksmode.org/dom/w3c%5Fcore.html#miscellaneous
In general it has always worked fine as per the DOM spec.
But don't expect non-standard extensions to work seamlessly... for example you can't set innerHTML on a DocumentFragment (which is a shame as it could have greatly improved insertion speed on some large pages).