Show next button only if an answer is selected | XM Community

Show next button only if an answer is selected

  • 12 January 2023
  • 4 replies
  • 139 views

Badge +1

hello mates
need your help
i have a simple multiple choice question with only one checkbox
I would like to show the next button only if this checkbox is selected
Is there a way?


4 replies

Userlevel 7
Badge +27

Add this JS to your question:
Qualtrics.SurveyEngine.addOnReady(function() {
var qobj = this;
qobj.hideNextButton();
jQuery("#"+qobj.questionId+" [type=checkbox]").click(function() {
if(this.checked) qobj.showNextButton();
else qobj.hideNextButton();
});
});

Badge +1

it works thanks a lot

Badge

Hello Mates, 

Unfortunately, the "Next" button disappears if I use this code, but after I have completed a questions the ‘NEXT Button’ does not reappear. Could you please provide guidance on how to resolve this?

 


 

 

Badge

Hi @csnagy,

→ The next button is initially hidden in the above code, that’s why it is disappeared.

→ You must have declared it globally at the start of the code due to which the next button is disappeared for all the questions. Enter the JS in between the element of the following, it will only work  for the particular question and not the whole survey.
 

Qualtrics.SurveyEngine.addOnReady(function()
{

    Your JS Code
});

Leave a Reply