- Posts: 44
- Thank you received: 3
Ask the community, share ideas, and connect with other LimeSurvey users!
<script> $(document).ready(function() { // Identify the questions var Test = $('#question'+{QID}+''); var Q1 = $(arrayQuestion).nextAll('.text-short:eq(0)'); // Hide the short-text question $(Q1).hide(); // Move the hidden text input into the array $('th.answertext:last', arrayQuestion).append($('input[type="text"]', Q1)); // Some styling... $('input[type="text"]', arrayQuestion).css({ 'text-align': 'left', 'width': '70%' }); }); </script>