- Posts: 5
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
In that specific context, allowing participant to change their answers, it brings some methodological limits. My goal is to assess confidence on an answer, but the very aspect of asking about confidence level might trigger the behavior of changing the answer. If that happen, I will have no way to know if the confidence level is about the first answer or the second one (or any other that could follow). Disabling the possibility to second guess was a way to limit this particular risk. Note that I am fully transparent with participants; I explicitly state that their answers are definitive at the moment that they click their answers.
<script type="text/javascript" data-author="Tony Partner"> $(document).on('ready pjax:scriptcomplete',function(){ var thisQuestion = $('#question{QID}'); // Listener on radios $(':radio', thisQuestion).on('click', function(e){ $(':radio:not(:checked)', thisQuestion).prop('disabled', true); }); // Returning to page if($(':radio:checked', thisQuestion).length > 0) { $(':radio:not(:checked)', thisQuestion).prop('disabled', true); } }); </script>