How to disable "back" button for one block or question? | XM Community
Solved

How to disable "back" button for one block or question?

  • 21 March 2022
  • 3 replies
  • 2417 views

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.

icon

Best answer by ManfredBM 21 March 2022, 15:46

View original

3 replies

Userlevel 5
Badge +32

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.

Userlevel 2
Badge +4

Is there a way of achieving this without having to add it to every question in the block?

Leave a Reply