Question
Advance to next page
I have a section of questions that I need to advance to the next section after 15 minutes. I have inserted the javascript from this page: https://stackoverflow.com/questions/47317718/how-to-use-automatically-move-respondents-in-qualtrics-with-global-timer-for-blo
It's displaying the time left nicely, but it's not clicking on the next button after 15 minutes. I need to do this with several other sections/questions after different amounts of time. Can someone help me get the 'click on next button' javascript right?
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.

Here the value inside delay() is in seconds, so you need to put 900 - equivalent to 15 minutes. Try adding this simple javaScript at any element on your page. Please do not add this code if the question is having in page logic or display criteria applied.
And simply paste this code in the highlighted part in below window:
var that = this;
(function(){that.clickNextButton();}).delay(900);
!