Delay next button for ALL blocks | XM Community
Skip to main content

Hello,
I am able to delay the next button for a block. Is there a way to delay the Next Button for all blocks by applying the JavaScript code to all blocks? I have a lot of blocks and manually inputting the JS code is very time-consuming,

Thank you in advance,

It would be good if you can paste the code here.
To apply to all blocks, just paste the code in the header(present under look and feel) -> source view under script tag.


Qualtrics.SurveyEngine.addOnReady(function() {
  this.hideNextButton();
  setTimeout(function() { jQuery("#NextButton").show(); },5000);
});

I clicked on Look and Feel --> Header --> Source and copied the code, but unfortunately it's not working. Can you be more specific and maybe suggest an alternative route? Thank you!


Paste this code in the source view of header:


That worked, thank you again!


Leave a Reply