Hi,
I am trying to include some code into my survey whereby I need to hide the "Next" button until a participant selects a 'Yes' or 'No' response. Either answer would allow the next button to be displayed but I am currently unsure of how to add both responses in.
Any help would be greatly appreciated.
All the best,
Ryan
Solved
How do I hide the "next" button until any response is selected?
Best answer by rondev
Use the below code:
this.disableNextButton();
this.questionclick = function(event,element)
{
if (element.type == 'radio')
{
this.enableNextButton();
}
}
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.