Google Analytics

Enabling cross domain tracking with unsupported navigation – Part 1

This is a 3 part series on cross-domain tracking with Google Analytics in non-standard situations:

  1. Part 1
  2. Part 2
  3. Part 3

In figuring out how to use Google Analytics on a site that spans multiple top level domains, (i.e. transfer cookies across multiple domains) there are many good resources out there (books, blogs, helpfiles and more). Given the amount of work done on this topic and the frequency with which it occurs on websites, you might not think this would be a difficult problem, and in most common cases, it isn’t.

But while there are well documented and standard methods that specifically deal with hyperlinks and HTML forms, you may find yourself in some unfamiliar territory if your site uses other types of navigation methods (scripted redirects, server-side, etc…).

Take, for example, the simple snippet below:

Link across top level domains
function redirectFunction()
{
window.location.replace('http://www.xxx.yyy/RedirectTarget.html');
}
 

To address this one, you might write a wrapper function that encapsulates the redirect and inserts a call to the pageTracker._link() function, so we’d do something like the following:

function redirectFunction()
{
window.location.replace(GoogleAnalyticsCookieAppend('http://www.xxx.yyy/
RedirectTarget.html'));
}
function GoogleAnalyticsCookieAppend(uri)
{
pageTracker._link(uri);
return uri;
}
 

Note: You’ll want to make sure to include the “return false” at the end of your call here.

This will work for cases where we have a hyperlink (anchor tag) doing this direct javascript call, as follows:

 This one tries indirectly  
 

But what about something that’s not a hyperlink, like a div container?

Content for this container
 
 

This is neither a hyperlink nor a form, and our attempts at solving this problem with pageTracker._link() and pageTracker._linkByPost() just don’t seem to work…

Continue to Part 2

Author

avender

Share
Published by
avender

Recent Posts

Back to The Future: Time to Move Beyond Cookies

Google announced in late April that it will not move forward with creating an in-browser…

6 days ago

Composable CDPs: The Future of Customer Data

Rethinking the Customer Data Platform Customer Data Platforms (CDPs) were built to bring all your…

2 weeks ago

Building a Scalable Analytics Program: When to Bring in DXA Tools like Contentsquare

Most analytics programs begin with foundational platforms like Google Analytics or Adobe Analytics. These tools…

1 month ago

This website uses cookies.