Created
February 11, 2016 23:15
-
-
Save wpsoul/3e80926497ea2410c816 to your computer and use it in GitHub Desktop.
Tracking in rehub on click for affiliate buttons
This file contains 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> | |
jQuery(document).ready(function($) { | |
'use strict'; | |
$(".btn_offer_block").on('click', function(){ | |
ga('send', 'event', 'Offer', 'click on offer button', document.location.href); | |
}); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment