I would like to block one specific "Next page" button for 10 seconds | XM Community
Skip to main content
Solved

I would like to block one specific "Next page" button for 10 seconds

  • December 22, 2020
  • 1 reply
  • 37 views

Forum|alt.badge.img

Dear All
I would like to block one specific "Next page" button for 10 seconds. I know that there are many survey platforms, which have this feature. I am now using qualtrics the first time and I do not know how to implement this. Does anybody know?
Thank you very much.
Best,
A.

Best answer by TomG

Use JavaScript in one of questions on the page:
Qualtrics.SurveyEngine.addOnReady(function() {
var qobj = this;
qobj.disableNextButton();
setTimeout(function() { qobj.enableNextButton(); },10000);
});

1 reply

TomG
Level 8 ●●●●●●●●
Forum|alt.badge.img+27
  • Level 8 ●●●●●●●●
  • Answer
  • December 22, 2020

Use JavaScript in one of questions on the page:
Qualtrics.SurveyEngine.addOnReady(function() {
var qobj = this;
qobj.disableNextButton();
setTimeout(function() { qobj.enableNextButton(); },10000);
});