vote up 4 vote down star
4

Without using any other JS frameworks (dojo, jquery, etc), how would I dynamically load Google Analytic's javascript to be used on a web page for web-tracking?

The typical appropriate to dynamically loading JS is to do the following:

var gaJs = document.createElement("script");
gaJs.type = "text/javascript";
gaJs.src = "http://www.google-analytics.com/ga.js";
document.body.appendChild(gaJs);
var pageTracker = _gat._getTracker("UA-XXXXXXXXX");
pageTracker._initData();
pageTracker._trackPageview();

But that doesn't work.

The ga.js file isn't loaded in time for _gat._getTracker & _initData/TrackPageview to function.

Any ideas on how to properly dynamically load ga.js.

UPDATE: Seems like someone has attempted to address this problem at the following link. However, it's for use with the old Urchin code and not Google Analytics.

Any ideas on how to get this to work with ga.js instead of urchin.js?

http://20y.hu/20070805/loading-google-analytics-dynamically-on-document-load.html

flag
Anyone have the priv. to edit the title? It's driving me nuts. – Danny Apr 15 at 22:21
@Danny - what would you recommend the title be changed too? – Hank810 Apr 15 at 23:56
Why would you want to dynamically load it? – Toby Mills Apr 16 at 8:14
Danny, is that better? – Thomas Owens Aug 11 at 13:24

6 Answers

vote up 6 vote down check

This Better Google Analytics JavaScript that doesn’t block page downloading post details how you should be able to get this working with ga.js.

link|flag
+1 get reference... been using something close to that~ – BigBlondeViking Aug 11 at 13:26
vote up 0 vote down
function loadGA()
{
    if(typeof _gat == 'function') //already loaded
    {
    	//innitGA();
    	// you may want the above line uncommented.. 
    	// I'm presuming that if the _gat object is there
    	// you wouldn't want to.
    	return;
    }
    var hostname = 'google-analytics.com';
    var protocol = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
    js = document.createElement('script');
    js.setAttribute('type', 'text/javascript');
    js.setAttribute('src', protocol+hostname+'/ga.js');
    document.body.appendChild(js);
    //2 methods to detect the load of ga.js
    //some browsers use both, however
    loaded = false; // so use a boolean
    js.onreadystatechange = function () {
    	if (js.readyState == 'loaded') 
    	{ 
    		if(!loaded)
    		{
    			innitGA();
    		}
    		loaded = true;
    	}
    };
    js.onload = function () 
    {
    	if(!loaded)
    	{			
    		innitGA();
    	}
    	loaded = true;
    };
}

function innitGA()
{
    //var pageTracker = _gat._getTracker('GA_ACCOUNT/PROFILE_ID');
    //pageTracker._initData();
    //pageTracker._trackPageview();
    alert('oh hai I can watch plz?');
}

just call loadGA()... tested on IE6/7/8, FF3, Chrome and Opera

sorry if I'm a bit late to this party.

link|flag
vote up 0 vote down

Try using the exact JavaScript code provided by Google and then conditionally display that section of code based on a construct in your UI framework. You didn't say what platform this is running on, if it's ASP.NET you could put the code in a PlaceHolder or UserControl and then set Visible to true or false based on a config file setting if the script should be included. I've used this approach on multiple sites to prevent the Analytics script from being included in pre-production environments.

link|flag
vote up 0 vote down

I've literally just put something together that does this... using jquery. The trick is to add a load event to the script tag with the tracking code in it.

var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
var gaScript = document.createElement('script');
var loaded = false;
gaScript.src = gaJsHost + "google-analytics.com/ga.js";

$(gaScript).load(function(){
  loaded = true;
  var pageTracker = _gat._getTracker(Consts.google_analytics_uacct);
  pageTracker._initData();
  pageTracker._trackPageview();
});

document.body.appendChild(gaScript);

// And to make it work in ie7 & 8
gaInterval = setInterval(function() {
  if (!loaded && typeof _gat != 'undefined') {
    $(gaScript).load();
    clearInterval(gaInterval);
  }
},50);

The thing i'm trying to work out is... is this allowed by google.

link|flag
vote up 0 vote down

Server side programming would be easier I guess, but I found this some time ago. Notice that it specifically sets it to the html head.

Also check on the first link down on 'Adding Javascript Through Ajax'.

link|flag
@voyager - the first link is showing how to do it using the method I show in my post, which does not work. The second link describes adding the JS to the html HEAD attribute, which is UNdesirable since that will block html rendering. – Hank810 Apr 15 at 21:58
@voyager - thanks though for attempting to answer :) – Hank810 Apr 15 at 21:59
vote up 0 vote down

This looks like it accomplishes what you are trying to do.

link|flag
It doesn't work because getTracker doesn't exist when the action is fired b/c the ga.js file hasn't finished downloading. There needs to be an action set to wait until the ga.js file downloads before it executes pageTracker. – Hank810 Apr 15 at 21:16
I'm curious why you can't always load the script, but only make the call be dynamic? – madcolor Apr 15 at 21:25
You want to dynamically load the JS so that it doesn't "block" the HTML rendering. Which is why you shouldn't use either document.write or the simply JS include. – Hank810 Apr 15 at 21:28
@AdamB - that for use with Urchin. Any idea on how to make this work with Google Analytics using ga.js instead of urchin.js ? – Hank810 Apr 15 at 21:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.