Skip to content

Instantly share code, notes, and snippets.

@VadimBrodsky
Created September 1, 2015 19:20
Show Gist options
  • Save VadimBrodsky/f7c94a35ba6d2957fd71 to your computer and use it in GitHub Desktop.
Save VadimBrodsky/f7c94a35ba6d2957fd71 to your computer and use it in GitHub Desktop.

Tracking Event on File Download in Google Analytics

function trackDownload(link) {
  var fileName = link.getAttribute('href');
  fileName  = fileName.split('/').pop();
  
  // Track event in GA
  _gaq.push(['_trackEvent', 'Download', 'Resources Download', fileName]);
}
<a href="some-file.pdf" onClick="trackDownload(this)">Some File</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment