Solved
How to auto-close survey with 5 second timer upon completion
Sorry I'm not good at javascript but I'm sure this probably is an easy ask, and I cannot find the answer anywhere? Is it possible to auto close the survey flyout window on desktop or mobile devices 5 seconds after completion(just enough time to read the thank you message).
Best answer by tbutler
Create a custom end of survey message, edit the source (looks like a rectangle with <> in it), and add this code after whatever message you want to be displayed:
<script>
setTimeout(function(){
window.close();
}, 5000);
</script>
That should wait 5 seconds and then close. If you want to change the amount of time it waits, change `5000` to the amount of time in milliseconds (the amount of seconds you want times 1000).
Note that this didn't seem to work for me when I previewed the survey, but it worked when I tested it out on an anonymous link distribution.
View originalLeave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.