Welcome to the LimeSurvey Community Forum

Ask the community, share ideas, and connect with other LimeSurvey users!

Another disable "next" button question

More
10 years 5 months ago #118260 by samarta
Hi,

Here is the test survey:
surveys.uc.pt/index.php/865947/lang-en



Thanks,


João
The topic has been locked.
More
10 years 5 months ago #118261 by tpartner
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:

Code:
<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() != '' &amp;&amp; $('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() != '' &amp;&amp; $('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.
More
10 years 5 months ago #118265 by samarta
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
The topic has been locked.
Moderators: tpartnerholch

Lime-years ahead

Online-surveys for every purse and purpose