Does visibility affect DOM manipulation performance? - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T16:40:37Zhttp://stackoverflow.com/feeds/question/544180http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/544180/does-visibility-affect-dom-manipulation-performance3Does visibility affect DOM manipulation performance?Chetan Sastry2009-02-13T00:15:49Z2009-02-13T00:34:48Z
<p>IE7/Windows XP</p>
<p>I have a third party component in my page that does a lot of DOM manipulation to adjust itself each time the browser window is resized.</p>
<p>Unfortunately I have little control of what it does internally and I have optimized everything else (such as callbacks and event handlers) as much as I can. I can't take the component off the flow by setting display:none because it fails measuring itself if I do so.</p>
<p>In my experience, it didn't help improve the performance.</p>
<p>In general, does setting visibility of the container to invisible during the resize help improve DOM rendering performance?</p>
http://stackoverflow.com/questions/544180/does-visibility-affect-dom-manipulation-performance/544198#5441982Answer by Richard Levasseur for Does visibility affect DOM manipulation performance?Richard Levasseur2009-02-13T00:24:11Z2009-02-13T00:24:11Z<p>I'm not certain, but removing it from the active document's DOM then manipulating it <em>does</em> improve performance. After all manipulating is done, attach it back to the document's DOM. Think of it sort of like video buffer swapping.</p>
http://stackoverflow.com/questions/544180/does-visibility-affect-dom-manipulation-performance/544223#5442234Answer by Ben Blank for Does visibility affect DOM manipulation performance?Ben Blank2009-02-13T00:34:48Z2009-02-13T00:34:48Z<p>Caveat: I have not specifically tested this with IE7, but I am reasonably confident based on what I know about its DOM manipulation model.</p>
<p>Changing CSS properties (whether <code>display: none</code> or <code>visibility: hidden</code> or what-have-you) will not affect the performance of DOM manipulation in any version of any browser I've worked with. The primary way to improve the speed of DOM manipulation is to remove the node(s) you will be working with from the document tree, performing your manipulations, and adding them back in. This involves keeping track of their succeeding sibling nodes, if any (for use with <code>insertBefore</code>), which can become complex if you're working with nodes which are scattered around the document.</p>
<p>One technique I have seen when performing a large number of DOM manipulations all at once is to get a list of the <code>body</code> element's children, remove them, perform your manipulations (wherever they fall in the document tree), and then reappend the body's child nodes. Depending on how long your DOM manipulations take (which is itself partially dependent on the speed of your visitor's computer!), this can produce a noticeable flicker. This is why sites manipulating content via AJAX will usually replace any temporarily-removed content with a "spinner" or loading screen.</p>