Created
May 5, 2014 00:39
-
-
Save ortense/22bd94b08df746a282fe to your computer and use it in GitHub Desktop.
Google Analytics Track First Click
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
(function($){ | |
var links = $("a"), | |
fistClick = function(){ | |
var link = $(this); | |
ga("send", "event", | |
"first-click", | |
document.location.pathname, | |
link.text() + "|" + link.attr("href") | |
); | |
links.off("mousedown", fistClick); | |
}; | |
links.on("mousedown", fistClick); | |
})(jQuery); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment