Created
February 27, 2019 20:35
-
-
Save JacobLett/ae0c8157eef56873e8e9bded0a723143 to your computer and use it in GitHub Desktop.
google analytics event on button click
This file contains hidden or 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
| <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