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

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.

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