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

CP Marketing

Share
Published by
CP Marketing

Recent Posts

Optimizing user experiences with Digital Experience Analytics (DXA) platforms

As consumers become increasingly digitally savvy, and more and more brand touchpoints take place online,…

2 weeks ago

Enabling Value-Based Bidding with Google Tightlock

Marketers are on a constant journey to optimize the efficiency of paid search advertising. In…

4 weeks ago

Resolving “Unassigned” Traffic in GA4

Unassigned traffic in Google Analytics 4 (GA4) can be frustrating for data analysts to deal…

1 month ago

This website uses cookies.