Skip to content

Instantly share code, notes, and snippets.

@leobaiano
Created January 23, 2018 00:10
Show Gist options
  • Save leobaiano/d359be3fe497556915f29463805de266 to your computer and use it in GitHub Desktop.
Save leobaiano/d359be3fe497556915f29463805de266 to your computer and use it in GitHub Desktop.
Eventos Analytics e GTM
<script>
function send_events( category, action, label ){
ga( 'create', 'UA-xxxxx' );
ga( 'send', 'event', {
eventCategory:category,
eventAction:action,
eventLabel:label
}
);
}
</script>
<a href="link" onclick="send_events( 'Slide de destaques da home', 'click', 'CTA' );">Comprar</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment