Created
February 23, 2015 11:17
-
-
Save ummahusla/b68386a8fce3c640b79c to your computer and use it in GitHub Desktop.
Create Google Analytics Custom Events
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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