- Posts: 72
- Thank you received: 10
Ask the community, share ideas, and connect with other LimeSurvey users!
<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>
you can try to paste this code into your question.pstpl fileSurveyDennis wrote: However is there are more clever way how I could apply this to all questions in the survey by using this for example in my template?
$(document).ready(function(){ $('#question{QID} input.radio').change(function(){ checkconditions($(this).attr('value'), $(this).attr('name'), $(this).attr('type')) $('#movenextbtn, #movesubmitbtn').click(); }); });