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

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

  • 22 December 2020
  • 1 reply
  • 10 views

Badge

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.

icon

Best answer by TomG 22 December 2020, 11:33

View original

1 reply

Userlevel 7
Badge +27

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

Leave a Reply