Solved
Timed custom message
Does anyone know if there is a way to set up a timer so that the respondent gets a message after X minutes spent on a question? I have a question that auto advances after 20 minutes but I'd like to be able to have a message pop up after 15 minutes telling them they have 5 minutes left. Thanks!
Best answer by AnthonyR
Assuming you actually want a popup, you could use an alert instead of unhiding a div. Add the following to the addOnReady section of the javascript for this question.
setTimeout(function(){
alert("This is your message");
}, 900000); //900000 ms is 900 seconds or 15 minutes
View originalLeave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.