Last active
August 29, 2015 13:57
-
-
Save davidji99/9610244 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
optimizely.$(".button1").live('click', function(e) { | |
event.preventDefault(); //prevents the default action from triggering | |
var destination = optimizely.$(this).attr('href'); //stores the intended redirect URL to a variable | |
window.optimizely = window.optimizely || []; //activates Optimizely | |
window.optimizely.push(['trackEvent', 'eventName', {'revenue': 4995}]); //issues tracking call to Optimizely | |
setTimeout(function() { window.location.href = destination; }, 1000); //gives one second delay before directing the visitor back to the original webpage. | |
}); | |
/* | |
time in MS | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment