- Posts: 115
- Thank you received: 4
Ask the community, share ideas, and connect with other LimeSurvey users!
<script type="text/javascript" charset="utf-8"> $(document).ready(function(){ // Identify the questions var qID = {QID}; var thisQuestion = $('#question'+qID); var nextQuestion = $(thisQuestion).nextAll('.text-short:eq(0)'); // Hide the next question $(nextQuestion).hide(); // Interrupt the Next/Submit function $('form#limesurvey').submit(function(){ // Override the built-in "disable navigation buttons" feature $('#moveprevbtn, #movenextbtn, #movesubmitbtn').attr('disabled', ''); // Store the time remaining $('input[type="text"]', nextQuestion).val($('#LS_question'+qID+'_Timer').text().replace(/Time remaining/, '')); return true; }); }); </script>