Skip to content

Instantly share code, notes, and snippets.

@davidji99
Last active August 29, 2015 13:57
Show Gist options
  • Save davidji99/9610244 to your computer and use it in GitHub Desktop.
Save davidji99/9610244 to your computer and use it in GitHub Desktop.
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