Created
August 7, 2008 23:28
-
-
Save atduskgreg/4517 to your computer and use it in GitHub Desktop.
Add getclicky.com logging to every link on a page using jquery
This file contains hidden or 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
var clicky_pause_timer = 10; | |
$(function() { | |
$('a').bind('click', function(e){ | |
clicky.log($(this).attr('href'), $(this).html()); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment