Created
May 25, 2016 23:34
-
-
Save M-Drummond/89dad1a718100e57ade269159ea3418c to your computer and use it in GitHub Desktop.
Use Analytics to detect links to external pages.
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
$(document).ready(function () { | |
$(".meet").mousedown(function () { | |
ga('send', 'event', { | |
eventCategory: 'Meet HTC 10 Button', | |
eventAction: 'click', | |
eventLabel: event.target.href, | |
transport: 'beacon' | |
}); | |
}); | |
$(".buy-now").mousedown(function () { | |
ga('send', 'event', { | |
eventCategory: 'HTC 10 Buy Now Button', | |
eventAction: 'click', | |
eventLabel: event.target.href, | |
transport: 'beacon' | |
}); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment