I am designing an experimental study, and I want the participants not to go back to the previous question/block after they are done with the experiment and respond to the post-experiment questions. How to disable the "back" button for one block or question. Thanks.
Page 1 / 1
Hi,
one way of achieving this is to add the following to the JavaScript section of the questions where you want to hide the back button:
Qualtrics.SurveyEngine.addOnload(function ()
{
//hides the next button on a page
this.hidePreviousButton();
});
Thanks a bunch. It worked.
Is there a way of achieving this without having to add it to every question in the block?
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.