Skip to content

Latest commit

 

History

History
41 lines (30 loc) · 1.71 KB

update-tracking-outbound-clicks-with-google-analytics-and-jquery.md

File metadata and controls

41 lines (30 loc) · 1.71 KB

Tracking outbound clicks with Google Analytics and jQuery

A while back I wrote a post about tracking outbound clicks with Google Analytics; way back then (about 6 months ago), the only event that Google Analytics could track was a pageview. Now that they've introduced the _trackEvent method of the pageTracker object, events that aren't pageviews don't need to count as pageviews anymore; instead, they can be counted as "events," and they can be categorized and labeled.

Here's an updated example of how to track outbound clicks using Google Analytics and jQuery. You'll of course need to be including the "new" analytics code (ga.js, not urchin.js) for this to work, as well as the jQuery library.

{% codeblock lang:javascript %} $('a').click(function() { var $a = $(this); var href = $a.attr('href');

// see if the link is external if ( (href.match(/^http/)) && (! href.match(document.domain)) ) {

// if so, register an event
var category = 'outgoing'; // set this to whatever you want
var event = 'click'; // set this to whatever you want
var label = href; // set this to whatever you want

pageTracker._trackEvent(category, event, href);

} }); {% endcodeblock %}

You can use the same method to unobtrusively add tracking code to file downloads:

{% codeblock lang:javascript %} var fileTypes = ['doc','xls','pdf','mp3'];

$('a').click(function() { var $a = $(this); var href = $a.attr('href'); var hrefArray = href.split('.'); var extension = hrefArray[hrefArray.length - 1];

if ($.inArray(extension,fileTypes) != -1) { pageTracker._trackEvent('download', extension, href); }

}); {% endcodeblock %}