Skip to content

Instantly share code, notes, and snippets.

@carmoreira
Created November 15, 2018 12:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carmoreira/b4750f1ac97367629f6cbece38415dc2 to your computer and use it in GitHub Desktop.
Save carmoreira/b4750f1ac97367629f6cbece38415dc2 to your computer and use it in GitHub Desktop.
Advisor Quiz: Redirect to a new page some seconds after results display
jQuery('.advq_button').on('click', function() {
setTimeout(function() {
window.location.href = 'https://www.envato.com';
}, 4000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment