We have an older site which still uses the ancient "gat" Analytics tracking code (pre asynchronous); we would like to upgrade it to the current "gaq" asynchronous code.
If anyone has done the same switch, a couple questions ...
1) Once we make the switch, will the user cookies carry over from the old code? Or will Analytics now "forget" visitors that have already visited our site and consider everyone that gets the updated asynchronous code snippet a brand new visitor?
2) The site is pretty complex; we'll probably have to "hunt" for all the sections of the site that have the old tracking code on them. While we do this code cleanup, will the old "gat" code and the new "gaq" code be compatible? Meaning they'll both count pageviews properly, will not lose referrer info, and count just one visit even if the user hits both pages containing the old code and those containing the new code during their visit?
Thanks! And just for reference, here's our current (old) code:
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-#######-#");
pageTracker._trackPageview();
} catch(err) {}</script>