Delay next button for ALL blocks | XM Community
Solved

Delay next button for ALL blocks


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,

icon

Best answer by rondev 19 May 2020, 10:52

View original

4 replies

Userlevel 7
Badge +22

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!

Userlevel 7
Badge +22

Paste this code in the source view of header:

That worked, thank you again!

Leave a Reply