Skip to content

Instantly share code, notes, and snippets.

@AndreaPaciolla
Last active August 29, 2015 14:04
Show Gist options
  • Save AndreaPaciolla/b107a6767674250f9374 to your computer and use it in GitHub Desktop.
Save AndreaPaciolla/b107a6767674250f9374 to your computer and use it in GitHub Desktop.
how to create custom events in global javascript with optimizely
$(document).ready( function() {
$("selector").click( function(e) {
e.preventDefault();
window['optimizely'] = window['optimizely'] || [];
window.optimizely.push(["trackEvent", "custom_event_id"]);
alert("Hello there");
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment