Thursday, January 10, 2008 - 10:56
To set up multiple Google Analytics tags on the same page you need to use the _uff = false; command in between the unchinTracker() calls to reset the tracker for the next account. The urchinTracker() function will send information on the page visit off to Google Analytics.
1 2 3 4 5 6 7 8 | <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script> <script type="text/javascript"> _uacct = "UA-XXXXX"; // First account details urchinTracker(); _uff = 0; // Reset tracker for second account _uacct = "UA-YYYYY"; // Second account details urchinTracker(); </script> |
You can do this for as many accounts as you like, but be aware that there will come a point when there will be a noticeable delay on the site when the calls to Google Analytics are done so don't do too many.
Category:
Comments
Submitted by James (not verified) on Tue, 01/22/2008 - 11:26 Permalink
_uff = false;Instead of_uff = 0;However, using the variable false doesn't work! Thanks for the tip.Add new comment