Created
December 21, 2009 20:49
-
-
Save zholmquist/261220 to your computer and use it in GitHub Desktop.
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> | |
//#function | |
function track_event(category, action, label) | |
{ | |
if(window.pageTracker) { | |
pageTracker._trackEvent(category, action, label); | |
} | |
} | |
//# use. | |
$('#green-buy-btn').click(function( | |
track_event('Landing Page', 'Buy Button Clicked','Green Button'); | |
)); | |
$('#blue-buy-btn').click(function( | |
track_event('Landing Page', 'Buy Button Clicked','Blue Button'); | |
)); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment