Hi all,
I have the following code, which hide the ‘next’ button until an answer has been selected:
this.hideNextButton();
this.questionclick = function(event,element)
{
if (element.type == 'radio')
{
this.showNextButton();
}
}
In other questions, I use a slider.
Is it possible to hide the ‘next’ button until the slider has been moved?
Thanks for any help :)