Please help us help you and fill where relevant: Your LimeSurvey version:
LimeSurvey Cloud
Version 6.6.5 Own server or LimeSurvey hosting: LimeSurvey hosting Survey theme/template:
Fruity TwentyThree
==================
Hi There
First of all thanks for your time.
I need the respondent to spend at least 60 seconds in the question before being able to move to the next question.
I tried setting the TIMER but it is not working. I can move to the next queston before the clock expires..
Can you please point out what I am doing wrong?
Attached is the file
Of course, a timer is the other way --> maximum time
Hide the back and submit buttons and show them after 60 seconds
Code:
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){// Hide the buttons
$('#ls-button-submit').hide();
$('#ls-button-previous').hide();
setTimeout(function(){// show buttons
$('#ls-button-submit').show();
$('#ls-button-previous').show();},60000);// after 60 seconds, or 60000 milliseconds});</script>
Joffm
Volunteers are not paid.
Not because they are worthless, but because they are priceless
Last edit: 3 months 1 week ago by Joffm.
The following user(s) said Thank You: jonas.jau, carlochecchia