Skip to content

Instantly share code, notes, and snippets.

@davidji99
Last active August 29, 2015 13:57
Show Gist options
  • Save davidji99/9352174 to your computer and use it in GitHub Desktop.
Save davidji99/9352174 to your computer and use it in GitHub Desktop.
window.myInterval = setInterval(function() { //sets an interval
if ($('someElement').length) { //checks if element exists. In this case, we are looking for the button element.
//add the variation code either custom written OR rom Optimizely here
clearInterval(window.myInterval); //after element has been found, clear the interval so the page doesn't load continuously
}
}, 50 )//interval timing in milliseconds;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment