- Posts: 15
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
Clever idea Shnoulle but I'm struggling with the lack of a click event not firing the filtering function. How would you set the "default" in Q1?Add the None of the above answer to each question, put this one in default for the first question and hide it with css/js.
Can't we do that by using the new default answer feature in Limesurvey. If you set a default answer there it should check the box at loading time; this should also work if the option is hidden by CSS I guess.Clever idea Shnoulle but I'm struggling with the lack of a click event not firing the filtering function. How would you set the "default" in Q1?
<script type="text/javascript" charset="utf-8"> $(document).ready(function(){ window.setTimeout(function() { $('td.answer li:last').show(); $('td.answer li:last input[type=hidden]:eq(0)').attr('value', 'on'); }, 50); }); </script>