Skip to content

Instantly share code, notes, and snippets.

@nickdenardis
Last active September 25, 2017 14:15
Show Gist options
  • Save nickdenardis/81539706acc0acacab09face1e8554ee to your computer and use it in GitHub Desktop.
Save nickdenardis/81539706acc0acacab09face1e8554ee to your computer and use it in GitHub Desktop.
GA track outgoing links
<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