up vote 7 down vote favorite
1
share [g+] share [fb]

I have used the "Better Google Analytics JavaScript that doesn’t block page downloading" to load Google Analytics dynamically so that it will not block HTML / page rendering.

However, it appears occassionaly that my HTML page will block rendering on the Firefox 3.0 (WinXP) status message states:

"Transferring data from www.google-analytics.com"

Any ideas on how to load the Google Analytics JavaScript in a way in which it will not block HTML/page rending?

link|improve this question
It uses the async attribute of the script tag. I think FF 3.0 doesn't support it. – Bart van Heukelom Dec 22 '09 at 11:44
feedback

6 Answers

You could use Google Analytics asynchronous loading of tracking codes. The following snippet should help:

<script type="text/javascript">

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-XXXXX-X']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script');
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
        'http://www') + '.google-analytics.com/ga.js';
    ga.setAttribute('async', 'true');
    document.documentElement.firstChild.appendChild(ga);
  })();

</script>

Place this before the closing body tag.

link|improve this answer
4  
FYI - this code is out of date. Google has published an update: code.google.com/apis/analytics/docs/tracking/asyncTracking.html – Brian Feb 15 '10 at 23:18
feedback

Put the Google Analytics code as the last thing before the </body> tag, like Google recommends?

link|improve this answer
I have and if you notice from the lyncd.com article code, it dynamically loads the JS into the head element. – BenHelley May 25 '09 at 4:58
Okay. When you're seeing the "Transferring data from www.google-analytics.com" message, has anything on your page actually been blocked from rendering, or does the page appear to have finished apart from that message hanging around? – chaos May 25 '09 at 5:00
When I see the message, the page has a noticeable block in rendering the page. I have JS that turns some DIV display from "none" to "block" but that code doesn't occur because the page get stuck on this "transfering data from www.google-analytics.com" – BenHelley May 25 '09 at 5:03
I see. Well, you could try arranging to have the script appended slightly after page load, on a short setTimeout; that at least will let other immediately pending operations run before it waits on Analytics. If that doesn't work or isn't feasible, you'd probably have to work out a way to pull the Analytics script using AJAX, which seems a bit challenging. – chaos May 25 '09 at 5:13
feedback

You may be seeing this bug. Before 3.6, FF sometimes incorrectly blamed google analytics for slowing down the page...

https://bugzilla.mozilla.org/show_bug.cgi?id=487638

link|improve this answer
feedback

But it at the bottom (just before the </body>) and delay it:

<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>

Have a look at my explanation about why I think this is the "best way to integrate analytics".

link|improve this answer
feedback

The DEFER attribute may work for you

<script DEFER type="text/javascript" src="http://www.google-analytics.com/ga.js">

<script DEFER type="text/javascript">... tracker code ...</script>
link|improve this answer
feedback

We recently released a jQuery plugin called Gatling that makes any JavaScript tracker asynchronous in any browser, including GA and a number of other common trackers.

We're offering help for any additional JavaScript/analytics services people need to spur adoption and continued development. Give it a try.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown