Hello,
I am hiding the next button and displaying it after a delay successfully using
Qualtrics.SurveyEngine.addOnReady(function() {
$('NextButton').hide();
setTimeout(function() { jQuery("#NextButton").show(); },5000);
});.
I would like the participants to hit the next button within 3 seconds after it appears, otherwise, they will disqualify and the survey should end without them seeing another question. I tried using a timing question with auto-advance after delay option but I cannot auto-advance to the end of the survey, it skips to the next question. I should also be able to note that this participant exited the survey and not finish it. I'll be grateful for any help, thank you.
Solved
skip to end of survey if next button is not chosen within a certain time limit
Best answer by evrim
thanks a alot @ahmedA ! This worked. I only removed the line
qc.questionContainer.hide() from the code since it was hiding all the questions text, which I didn't want. But this was really helpful, thank you!
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
