- Posts: 60
- 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() { $('#movenextbtn, #movesubmitbtn').on('click', function () { if($('input:radio:checked').length == 0) { var moveOn = confirm("You didn't answer the question, are you sure you want to move to the next page?"); if (moveOn == false) { return false; } } }); }); </script>