Last active
September 25, 2017 14:15
-
-
Save nickdenardis/81539706acc0acacab09face1e8554ee to your computer and use it in GitHub Desktop.
GA track outgoing links
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> | |
$('a[href*=".pdf"]').click(function(){ | |
ga('send', 'event', 'Download', encodeURI($(this).attr('href')), $(this).html()); | |
return true; | |
}); | |
</script> | |
<a href="/tour" onclick="ga('send', 'event', 'Click', 'CTA', 'Schedule a tour')">Schedule a tour</a> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment