- Posts: 54
- Thank you received: 1
Ask the community, share ideas, and connect with other LimeSurvey users!
No need to close , still intersting.Liod_DS wrote: ...
but how can i hide a question on a different page without using the relevance field ?
Nice but you'll still need JS to submit the page if in question-by-question mode as Liod_DS is.Next version : expression in CSS classes : exemple {if(Q3.NAOK != "128","hidden","")} but only on a different page.
Totally right,tpartner wrote: Nice but you'll still need JS to submit the page if in question-by-question mode as Liod_DS is.
<script> $(document).ready(function(){ //alert ({D3.NAOK}); if({D3.NAOK} == '128'){ $("#answer722214X474X46825126").click(); //my question is mandatory, but i can't check the "none of these"-exclusive option, otherwise it will deny any future access $("#movenextbtn,#movesubmitbtn").click(); }else{ $("#question46825").toggle(); } }); </script>
<script> $("#question46825").toggle(); </script>