I need to do heavy DOM manipulations on the whole document of webpages in an Add-On I write. I would like to minimize the reflows so only one reflow happens for all my manipulations. Removing the body element, doing the manipulations and then inserting it again is not an option because this reevaluates all <script> elements. Currently I set visibility of the body to 'none' before the manipulations and restore the value of display after. I'm not sure if this is teh best way to deal with this, though.

Is there a better way? Of course it could be Firefox/Mozilla specific code. After all it's a Firefox Add-On.

link|improve this question

44% accept rate
Are you just appending stuff, or doing a bunch of modifications? – sdwilsh Jul 17 '10 at 20:17
I replace all #text nodes that aren't whitespace only with a bunch of elements: foo bar baz -> <x><y>foo</y> <y>bar</y> <y>baz</y></x> I do this so I can get the exact position of every word (after I manipulated all elements). – panzi Jul 18 '10 at 19:00
feedback

1 Answer

up vote 1 down vote accepted

Gecko is actually pretty good at suppressing unnecessary modifications on its own (i.e., you may well be better off not messing with it), except when, in between the many modifications you're making, you're also requesting information that requires layout to be up-to-date (such as element positions or sizes, getComputedStyle, etc.)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.