Auto advance page after designated time | XM Community
Skip to main content
Solved

Auto advance page after designated time


Forum|alt.badge.img+1
Hello, I am trying to put together a presentation phase for an experiment where the participant views a images for 2 seconds each. I would like images to pop up one by one. I would need these images presented in random order. I used the following Javascript which worked for the first few items and then began glitching. var displayTime = 2; new PeriodicalExecuter(function(){ if($('NextButton'))$('NextButton').click(); },displayTime); Any help would be appreciated. Thank you

Best answer by Anonymous

Hello @Ikorenman , You can use Timer question of qualtrics OR Use the below code: setTimeout(function() { jQuery("#NextButton").click(); }, 2000);
View original

2 replies

  • 0 replies
  • Answer
  • March 26, 2019
Hello @Ikorenman , You can use Timer question of qualtrics OR Use the below code: setTimeout(function() { jQuery("#NextButton").click(); }, 2000);

Forum|alt.badge.img+1
  • Author
  • 6 replies
  • March 26, 2019
Thank you, works perfectly!

Leave a Reply