Last active
August 29, 2015 13:57
-
-
Save davidji99/9352174 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
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