- Posts: 9
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
I was trying with that code, which I found at this forum:tpartner wrote: You cannot hide the question with the advanced setting - this prevents the question from being rendered in the document so it can never be shown. You will need to initially hide the question with CSS or JavaScript.
.
$('#questionQQ').hide();
<script type="text/javascript" charset="utf-8"> $(document).ready(function() { $('#question{QID}').hide(); }); </script>