Improving ROI through Website Analytics and Search & Conversion Marketing
Use these statistical testing tools to analyze your ppc split tests, conversion marketing tests, estimate sample sizes, and more
Contact Us | Careers | Client Login | Social Responsibility | Blog
WebShare Search and Conversion Marketing, Google Consulting Services Logo
Website Analytics
Conversion Marketing
Search Marketing
PPC Management
Website Design
eCRM & E-mail Marketing
Training
Google Consulting Services
Your website has never before meant more to your bottom line. Make sure you're getting the most out of your online investment through advanced website analytics, search and conversion marketing, usability and website design, traffic acquisition strategies and online advertising management with WebShare, LLC.
Website Analytics are crucial to the measurement and improvement of your website. WebShare can help you define your online success metrics and track how visitors get to your site, what they do while they're there, how they're monetized or converted into customers, and how they eventually leave.
Your website is perhaps the most effective testing ground you'll find for understanding how your marketing messages resonate with your customers. Through statistical experimentation, very small changes to the elements on your pages can have a profound impact on your conversion rates and your bottom line.
Leveraging the power of search as a traffic acquisition strategy can help drive highly targeted, qualifed traffic to the most relevant pages of your website. WebShare helps clients understand how search engines can attract new customers and creates customized programs that fit the specific needs and goals of client websites.
Using Google Adwords, Yahoo! Search Marketing, MSN adCenter, or any other paid advertising campaigns? If so, you need to make sure you're managing these programs correctly. From fully outsourced management to training programs, WebShare helps you manage your online advertising to profitability metrics.
WebShare's wealth of experience in conversion and usability testing and search engine optimization is key to the website design and deployment services we offer. We build websites that ensure your potential customers not only find you, but have an experience that contributes to your goals and financial success.
If you're managing your online marketing programs in-house, WebShare's training programs can help you understand, manage, and improve upon topics ranging from website analytics and statistical conversion testing to search marketing and online advertising campaign management.
WebShare is a Google Analytics Authorized Consultancy, a Google Website Optimizer Authorized Consultancy, and a Google Adwords Qualified Company. Let our experts help you get the most out of the Google programs and services that drive your business - and your bottom line.
Leveraging your CRM data to drive traffic and conversions on your website can open up new doors to your online strategies. From eCRM integration solutions to Email marketing campaign management, WebShare can help make the most of your customer relationships.

WebShare Blog
WebShare's Search and Conversion Marketing Blog - Blog posts about website analytics, search and conversion marketing and more from a Google consulting services firm
Most Recent Posts:

Search & Conversion Marketing Blog Categories:

Search & Conversion Marketing Blog Archives:

Search & Conversion Marketing Blog
Search & Conversion Marketing Newsletter
Get Our Feed (RSS)

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:

<code>
<a href="" onclick="redirectFunction()">Link across top level domains</a>
function redirectFunction()
{
window.location.replace('http://www.xxx.yyy/RedirectTarget.html');
}
</code>

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

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

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:

<code>
<a href="" onclick="GoogleAnalyticsCookieAppend('http://www.xxx.yyy/
RedirectTarget.html');return false;"> This one tries indirectly  </a>
</code>

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

<code>
<div id="mydiv" onclick="redirectFunction();return false;">
Content for this container
</div>
</code>

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

Leave a Reply