Skip to content

Instantly share code, notes, and snippets.

@lluchs
Created July 6, 2013 15:47
Show Gist options
  • Save lluchs/5940280 to your computer and use it in GitHub Desktop.
Save lluchs/5940280 to your computer and use it in GitHub Desktop.
Tracks downloads via GA events.
/* Downloads tracking */
jQuery(function() {
var dlr = /\.(?!html?|php)(\w{1,4})$/
jQuery('a').click(function() {
var m
if (typeof(ga) == 'function' && (m = dlr.exec(this.href))) {
ga('send', 'event', 'download', m[1], this.href)
}
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment