Solved
Display a subsequent question based on movement of the preceding slider question
Hello,
I have a slider question (ranging from 0-100) and want the subsequent question to appear (in the same page) once the slider is moved. The value of the slider should not matter for the display of the subsequent question.
Appreciate any inputs and help.
Best answer by Anonymous
Hello @salomi ,
Assumption - By finalizing you mean that once the user stops rolling the slider of the question.
Paste the below code in the slider question js(OnReady)
jQuery("#QID2").hide();
jQuery("#"+this.questionId+" .BarOuter").on('mouseup', function(){
jQuery("#QID2").show();
});
In the above code change the QID2 to the QID of the subsequent question.
Look at the working here
View originalLeave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.