Skip to content

Instantly share code, notes, and snippets.

@cryptixcoder
Created July 6, 2015 20:00
Show Gist options
  • Save cryptixcoder/83d074ebc5c23bcbf608 to your computer and use it in GitHub Desktop.
Save cryptixcoder/83d074ebc5c23bcbf608 to your computer and use it in GitHub Desktop.
GA Tracker
$(document).on('click','.trackit', function(){
var action = $(this).data('ga-action'),
label = $(this).data('ga-label'),
category = $(this).data('ga-category');
ga('send','event',category,action,label);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment