I have a survey with a list with radio-buttons and I would like the user to proceed to next question after selecting answer.
I have found some javascript solutions on this forum such as this one:
Code:
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$('#question{QID} input.radio').click(function() {
checkconditions($(this).attr('value'), $(this).attr('name'), $(this).attr('type'))
$('#movenextbtn, #movesubmitbtn').trigger('click');
});
});
</script>
However I get this error when I implement (adding the code to "question.pstpl") it:
Code:
One or more mandatory questions have not been answered . Please answer this first to proceed !
I run the default template on version 2.63.0+170304
What can I do to make this work?