- Posts: 4
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
for(var i=0; i<showNumberOfGroups;i++){"
<script> $(function(){ $('body').hide() var showNumberOfGroups = 2; //enter number of groups to randomly show. var $cboxs = $('input:checkbox'); for(var i=0;i<2;i++){ $cboxs.eq(i).prop('checked',true); } document.getElementById('movenextbtn').click(); }) </script>
Equation question type can SET value.OMdev wrote: Sure I will post it there . But I curious to know if someone can suggest how we can tick(auto select) x number of options in a multi choice question using EM only. That way we wont have to hide question using CSS and auto submit via js.
<script> $(function(){ $('body').hide() var showNumberOfGroups = 2; //enter number of groups to randomly show. var $cboxs = $('input:checkbox'); for(var i=0;i<2;i++){ $cboxs.eq(i).prop('checked',true); } document.getElementById('movenextbtn').click(); }) </script>