Skip to content

Instantly share code, notes, and snippets.

@abrudtkuhl
Created October 31, 2017 17:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save abrudtkuhl/6bf379b23edf09651a06748f60e2d164 to your computer and use it in GitHub Desktop.
Save abrudtkuhl/6bf379b23edf09651a06748f60e2d164 to your computer and use it in GitHub Desktop.
Basic gtag.js Event Tracking Example
document.getElementById('search-submit').onclick = function() {
gtag('event', 'homepage_search', {
'event_category': 'Search',
'event_action': 'submit',
'event_label': 'Homepage Search'
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment