- Posts: 13
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
<script type="text/javascript" charset="utf-8"> $(document).ready(function(){ $('#questionQQ table.question thead th:last').text('New Label'); }); </script>
<script type="text/javascript" charset="utf-8"> $(document).ready(function(){ $('#question{QID} label.answertext:last').text('New Label'); }); </script>
lime_enpres wrote: Therefore we would like to know if it is possible to eliminate the "no answer" field for a specific question while answering the question is still non-mandatory.
<script type="text/javascript" charset="utf-8"> $(document).ready(function(){ $('#questionQQ table.question tr td:last').css({ 'display':'none' }); // $('#questionQQ table.question thead th:last').css({ 'display':'none' }); }); </script>
#javatbd1234X567X89 { display:none }