Use a back button within blocks / Keep participants from moving back and forth between blocks | XM Community
Solved

Use a back button within blocks / Keep participants from moving back and forth between blocks

  • 22 June 2020
  • 3 replies
  • 93 views

Hi! I am working on a survey that presents participants with questions on two scenarios that they are supposed to complete to get credit. It is important that I am able to let them move back and forth between the questions in each block BUT that they are not able to move back and forth between the two blocks. Is there a way to let the participants move back/forth between the questions in a single scenario but not let them move between the two blocks? Thanks!

icon

Best answer by rondev 22 June 2020, 08:27

View original

3 replies

Userlevel 7
Badge +22

On the first question of the second block, just hide or disable the previous button using javascript.

Userlevel 5
Badge +12

hi @rondev, Is there any JS to enable/display the back button on the first question of a new block

Userlevel 5
Badge +32

Hi,
you can use the following JS code on the first question of the new block:
 

Qualtrics.SurveyEngine.addOnload(function ()

{

// Hide back button on this specific page
this.hidePreviousButton();

});

 

Leave a Reply