Google Analytics - Blocks HTML/page rendering - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T09:30:57Zhttp://stackoverflow.com/feeds/question/905353http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/905353/google-analytics-blocks-html-page-rendering2Google Analytics - Blocks HTML/page renderingBenHelley2009-05-25T04:47:37Z2009-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#9053723Answer by chaos for Google Analytics - Blocks HTML/page renderingchaos2009-05-25T04:51:41Z2009-05-25T04:51:41Z<p>Put the Google Analytics code as the last thing before the <code></body></code> tag, like Google recommends?</p>
http://stackoverflow.com/questions/905353/google-analytics-blocks-html-page-rendering/905448#9054481Answer by cherouvim for Google Analytics - Blocks HTML/page renderingcherouvim2009-05-25T05:33:24Z2009-05-25T05:33:24Z<p>But it at the bottom (just before the </body>) and delay it: </p>
<pre><code><script type="text/javascript" src="http://www.google-analytics.com/ga.js"></script>
<script type="text/javascript">
if (typeof(_gat)=='object')
setTimeout(function(){
_gat._getTracker("UA-1234567-8")._trackPageview()}, 1500);
</script>
</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#9055751Answer by SpliFF for Google Analytics - Blocks HTML/page renderingSpliFF2009-05-25T06:25:41Z2009-05-25T06:25:41Z<p>The DEFER attribute may work for you</p>
<pre><code><script DEFER type="text/javascript" src="http://www.google-analytics.com/ga.js">
<script DEFER type="text/javascript">... tracker code ...</script>
</code></pre>