Skip to content

Instantly share code, notes, and snippets.

@theisof
Last active August 29, 2015 14:19
Show Gist options
  • Save theisof/2ed7f02766559a61b472 to your computer and use it in GitHub Desktop.
Save theisof/2ed7f02766559a61b472 to your computer and use it in GitHub Desktop.
Turbolinks GTM click rule
$(document).on('click', 'a', function(event){
event.preventDefault();
var path = $(this).attr('href');
dataLayer.push({'event':'pageview', 'turbolinksClick': true});
Turbolinks.visit(path);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment