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:
Code:
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){// Identify this questionvar thisQuestion = $('#question{QID}');
$('#movenextbtn').hide();// Check the initial value of the age questionif($('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.