- Posts: 11
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
<script type="text/javascript" charset="utf-8"> $(document).ready(function() { $('#question{QID} .radio').on('change', function(e) { $('#movenextbtn, #movesubmitbtn').trigger('click'); }); }); </script>
$(document).ready(function() { $('.yes-no .radio').on('change', function(e) { $('#movenextbtn, #movesubmitbtn').trigger('click'); }); });
$(document).ready(function() { $('.yes-no .radio').on('change', function(e) { $('#movenextbtn, #movesubmitbtn').delay(300).trigger('click'); }); });
If i remind i have issue with some control on Array question type with some Expression Manager system in it. Didn't really remind for now.tpartner wrote: I have never encountered that problem.