Skip to content

Instantly share code, notes, and snippets.

@JacobLett
Created February 27, 2019 20:35
Show Gist options
  • Select an option

  • Save JacobLett/ae0c8157eef56873e8e9bded0a723143 to your computer and use it in GitHub Desktop.

Select an option

Save JacobLett/ae0c8157eef56873e8e9bded0a723143 to your computer and use it in GitHub Desktop.
google analytics event on button click
<script>
$( document ).ready(function() {
$('.button').click(function() {
var URL = window.location.href;
gtag('event', URL, {
'event_category': 'button click',
'event_label': $(this).attr('href')
});
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment