Skip to content

Instantly share code, notes, and snippets.

@MikSDigital
Created December 8, 2016 07:30
Show Gist options
  • Save MikSDigital/a935861aefd08bd3162f34c29cafff88 to your computer and use it in GitHub Desktop.
Save MikSDigital/a935861aefd08bd3162f34c29cafff88 to your computer and use it in GitHub Desktop.
analytics event trigger
$(function(){
$(".btn-large").on('click', function() {
var name = (this.text + " - " + this.id);
if(typeof(analytics) == 'object') {
analytics.track('Clicked', {
category: 'Webtrader',
label: name
});
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment