- Posts: 23
- Thank you received: 1
Another disable "next" button question
7 years 10 months ago #118260
by samarta
Replied by samarta on topic Another disable "next" button question
The topic has been locked.
7 years 10 months ago #118261
by tpartner
Cheers,
Tony Partner
Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
Replied by tpartner on topic Another disable "next" button question
Oh, I see what you're doing now.
You'll need a listener on that "Age" input. Also we can automatically detect the input so you won't need to modify the SGQA for different surveys.
Place this in the source of the "Age" question:
You'll need a listener on that "Age" input. Also we can automatically detect the input so you won't need to modify the SGQA for different surveys.
Place this in the source of the "Age" question:
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
// Identify this question
var thisQuestion = $('#question{QID}');
$('#movenextbtn').hide();
// Check the initial value of the age question
if($('input.text', thisQuestion).val() != '' && $('input.text', thisQuestion).val() < 18){
$('#movenextbtn').show();
}
// A listener on the age question
$('input.text', thisQuestion).on('keyup change paste', function() {
setTimeout(function() {
if($('input.text', thisQuestion).val() != '' && $('input.text', thisQuestion).val() < 18){
$('#movenextbtn').show();
}
else {
$('#movenextbtn').hide();
}
}, 100);
});
});
</script>
Cheers,
Tony Partner
Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
The following user(s) said Thank You: samarta
The topic has been locked.
7 years 10 months ago #118265
by samarta
Replied by samarta on topic Another disable "next" button question
Hi:
This is still not working im my production system (LimeSurvey Version 2.00+ Build 130406)
But I have a testing system with LimeSurvey Version 2.05+ Build 141003, and THERE it works fine.
I have to upgrade my production system.
Thank you, once again.
João
This is still not working im my production system (LimeSurvey Version 2.00+ Build 130406)
But I have a testing system with LimeSurvey Version 2.05+ Build 141003, and THERE it works fine.
I have to upgrade my production system.
Thank you, once again.
João
The topic has been locked.