Skip to content

Instantly share code, notes, and snippets.

@ameeker
Created October 6, 2017 15:12
Show Gist options
  • Save ameeker/501107545c0678c3d00d07727af6fd49 to your computer and use it in GitHub Desktop.
Save ameeker/501107545c0678c3d00d07727af6fd49 to your computer and use it in GitHub Desktop.
OptinMonster: Testing with and without optin variations in VWO
if (window.timerX) clearInterval(window.timerX);
window.timerX = setInterval(function()
{
if (vwo_$('#om-YOUR-OPTIN-SLUG').length)
{
vwo_$('#om-YOUR-OPTIN-SLUG').remove(); // script S1 here.
clearInterval(window.timerX);
}
}, 100);
Be sure to change the YOUR-OPTIN-SLUG above to own optin's slug.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment