Google Analytics - Blocks HTML/page rendering - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T09:30:57Z http://stackoverflow.com/feeds/question/905353 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/905353/google-analytics-blocks-html-page-rendering 2 Google Analytics - Blocks HTML/page rendering BenHelley 2009-05-25T04:47:37Z 2009-05-25T06:25:41Z <p>I have used the "<a href="http://lyncd.com/2009/03/better-google-analytics-javascript/" rel="nofollow">Better Google Analytics JavaScript that doesn’t block page downloading</a>" to load Google Analytics dynamically so that it will not block HTML / page rendering.</p> <p>However, it appears occassionaly that my HTML page will block rendering on the Firefox 3.0 (WinXP) status message states:</p> <p>"<strong>Transferring data from www.google-analytics.com</strong>"</p> <p><em>Any ideas on how to load the Google Analytics JavaScript in a way in which it will not block HTML/page rending?</em></p> http://stackoverflow.com/questions/905353/google-analytics-blocks-html-page-rendering/905372#905372 3 Answer by chaos for Google Analytics - Blocks HTML/page rendering chaos 2009-05-25T04:51:41Z 2009-05-25T04:51:41Z <p>Put the Google Analytics code as the last thing before the <code>&lt;/body&gt;</code> tag, like Google recommends?</p> http://stackoverflow.com/questions/905353/google-analytics-blocks-html-page-rendering/905448#905448 1 Answer by cherouvim for Google Analytics - Blocks HTML/page rendering cherouvim 2009-05-25T05:33:24Z 2009-05-25T05:33:24Z <p>But it at the bottom (just before the &lt;/body&gt;) and delay it: </p> <pre><code>&lt;script type="text/javascript" src="http://www.google-analytics.com/ga.js"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; if (typeof(_gat)=='object') setTimeout(function(){ _gat._getTracker("UA-1234567-8")._trackPageview()}, 1500); &lt;/script&gt; </code></pre> <p>Have a look at my explanation about why I think this is the "<a href="http://blog.cherouvim.com/best-way-to-integrate-google-analytics/" rel="nofollow">best way to integrate analytics"</a>.</p> http://stackoverflow.com/questions/905353/google-analytics-blocks-html-page-rendering/905575#905575 1 Answer by SpliFF for Google Analytics - Blocks HTML/page rendering SpliFF 2009-05-25T06:25:41Z 2009-05-25T06:25:41Z <p>The DEFER attribute may work for you</p> <pre><code>&lt;script DEFER type="text/javascript" src="http://www.google-analytics.com/ga.js"&gt; &lt;script DEFER type="text/javascript"&gt;... tracker code ...&lt;/script&gt; </code></pre>