Next Button | XM Community
Skip to main content
Solved

Next Button

  • June 26, 2019
  • 2 replies
  • 14 views

I am using javascript to hide the next button in a question (Q1). The code I am using is: Qualtrics.SurveyEngine.addOnReady(function() { this.hideNextButton(); this.clickNextButton.delay(1); }); Following this question I have a page break. Then a new question (Q2). About 50% of the people taking the survey get stuck on Q2 because the next button remains hidden. Does anyone know what the command is to explicitly show the next button (as in the psuedocode: this.showNextButton() )? Thanks for any help you can provide.

Best answer by PsychSurvey1

For anyone who ever wonders the same thing in the future: Turns out, it is in fact this.showNextButton.

2 replies

  • Author
  • 1 reply
  • Answer
  • June 26, 2019
For anyone who ever wonders the same thing in the future: Turns out, it is in fact this.showNextButton.

Forum|alt.badge.img
  • 4 replies
  • August 22, 2019
Hey! Did you ever get this to work? I've tried it but it doesn't work for me. Without the line this.showNextButton, I get the same problem you had: the next button stayed hidden and I can't advance past the last question. With the line this.showNextButton, the next button is shown for all questions in the block, including the ones where it should be hidden.