Skip to content

Instantly share code, notes, and snippets.

@ummahusla
Created February 23, 2015 11:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ummahusla/b68386a8fce3c640b79c to your computer and use it in GitHub Desktop.
Save ummahusla/b68386a8fce3c640b79c to your computer and use it in GitHub Desktop.
Create Google Analytics Custom Events
// Using jQuery
$('#button-id').on('click', function() {
ga('send', 'event', 'button', 'click', 'donate-button');
});
// Where:
// button is the event category
// click is the action
// donate-button is the label
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment