Skip to content

Instantly share code, notes, and snippets.

@alanbasilio
Last active August 29, 2015 14:07
Show Gist options
  • Save alanbasilio/5094cc78eaea6d09a372 to your computer and use it in GitHub Desktop.
Save alanbasilio/5094cc78eaea6d09a372 to your computer and use it in GitHub Desktop.
Analytics Events (with analytics.js)
//Segundo o Youtube:
ga('send', {'hitType': 'event', 'eventCategory': 'categoryPdf', 'eventAction': 'clickAction', 'eventLabel': 'myLabel' });
//Segundo o Google:
ga('send', {
'hitType': 'event', // Required.
'eventCategory': 'button', // Required.
'eventAction': 'click', // Required.
'eventLabel': 'nav buttons',
'eventValue': 4
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment