Auto-advance not working properly | XM Community
Skip to main content

Hi community!
I'm designing a survey with auto-advance (after 2 minutes) on all questions. I noticed that the time it takes to auto-advance is not fixed to 2 minutes, sometimes it takes 2 and a half minutes, sometimes 5 minutes, and sometimes auto-advance does not work at all. Anyone ran into similar problems before?
Any help is highly appreciated.
Thank you!

DHE
I haven't faced an issue as such. Not sure what code you're using to auto-advance, but if you need help. You can use the below code it worked for me.
Qualtrics.SurveyEngine.addOnload(function()
{
/*Place your JavaScript here to run when the page loads*/
var that= this;
setTimeout(function() {
that.clickNextButton(); 
}, 120000);
});
Hope it helps!


https://community.qualtrics.com/XMcommunity/discussion/comment/51511#Comment_51511Thanks, I was using the timer auto-advance instead of JS. Now your proposed code works great!


Leave a Reply