When does reflow happen in a DOM environment? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T00:50:18Z http://stackoverflow.com/feeds/question/510213 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/510213/when-does-reflow-happen-in-a-dom-environment 0 When does reflow happen in a DOM environment? Morgan Cheng 2009-02-04T05:50:42Z 2009-08-14T14:33:37Z <p>What kinds of activities will trigger reflow of web page with DOM?</p> <p>It seems there are different points of view. According to <a href="http://www.nczonline.net/blog/2009/02/03/speed-up-your-javascript-part-4/" rel="nofollow">http://www.nczonline.net/blog/2009/02/03/speed-up-your-javascript-part-4/</a>, it happens</p> <ul> <li>When you add or remove a DOM node.</li> <li>When you apply a style dynamically (such as element.style.width="10px").</li> <li>When you retrieve a measurement that must be calculated, such as accessing offsetWidth, clientHeight, or any computed CSS value (via getComputedStyle() in DOM-compliant browsers or currentStyle in IE).</li> </ul> <p>However, according to <a href="http://dev.opera.com/articles/view/efficient-javascript/?page=3" rel="nofollow">http://dev.opera.com/articles/view/efficient-javascript/?page=3</a>, taking measurement triggers reflow only when there is already reflow action queued.</p> <p>Does anybody have any more ideas?</p> http://stackoverflow.com/questions/510213/when-does-reflow-happen-in-a-dom-environment/510428#510428 1 Answer by Vatos for When does reflow happen in a DOM environment? Vatos 2009-02-04T07:45:02Z 2009-02-04T07:45:02Z <pre><code>document.body.style.display = 'none'; document.body.style.display = 'block'; </code></pre> <p>This often solves those incomprehensible layout bugs.</p> http://stackoverflow.com/questions/510213/when-does-reflow-happen-in-a-dom-environment/1278213#1278213 1 Answer by coderjoe for When does reflow happen in a DOM environment? coderjoe 2009-08-14T14:33:37Z 2009-08-14T14:33:37Z <p>Both articles are correct. One can safely assume that whenever you're doing something that could reasonably require the dimensions of elements in the DOM be calculated that you will trigger reflow.</p> <p>In addition, as far as I can tell, both articles say the same thing.</p> <p>The first article says reflow happens when:</p> <blockquote> <p>When you <strong>retrieve a measurement that must be calculated</strong>, such as accessing <strong>offsetWidth</strong>, <strong>clientHeight</strong>, or any computed CSS value (via <strong>getComputedStyle()</strong> in DOM-compliant browsers or currentStyle in IE), while DOM changes are queued up to be made.</p> </blockquote> <p>The second article states:</p> <blockquote> <p>As stated earlier, the browser may cache several changes for you, and reflow only once when those changes have all been made. However, note that <strong>taking measurements of the element will force it to reflow</strong>, so that the measurements will be correct. The changes may or may not not be visibly repainted, but the reflow itself still has to happen behind the scenes.</p> <p>This effect is created when measurements are taken using properties like <strong>offsetWidth</strong>, or using methods like <strong>getComputedStyle</strong>. Even if the numbers are not used, simply using either of these while the browser is still caching changes, will be enough to trigger the hidden reflow. If these measurements are taken repeatedly, you should consider taking them just once, and storing the result, which can then be used later.</p> </blockquote> <p>I take this to mean the same thing they said earlier. Opera will try its hardest to cache values and avoid reflow for you, but you shouldn't rely on its ability to do so.</p> <p>For all intents and purposes just believe what they both say when they say that all three types of interactions can cause reflow.</p> <p>Cheers.</p>