- Posts: 61
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
{Q1_other}
<script type="text/javascript" charset="utf-8"> $(document).ready(function() { // Identify the questions var q1 = $('#question'+{QID}+''); var q2 = $(q1).nextAll('.numeric:eq(0)'); // Hide the numeric question $(q2).hide(); // Move the hidden numeric input into the option list $('.label-text:last', q1).append($('input', q2)); // Some styling... $('input', q1).css({ 'width': '20%', }); }); </script>
Vote , vitetpartner wrote: There is no question validation equation for list-radio questions.....