- Posts: 13659
- Thank you received: 4188
Ask the community, share ideas, and connect with other LimeSurvey users!
<script type="text/javascript" charset="utf-8"> $(document).ready(function(){ $('input[type="text"]').keyup(function () { $this=$(this); if ($this.val().length >=1) { $this.next('input[type="text"]').focus(); } }); }); </script>
<script type="text/javascript" charset="utf-8"> $(document).ready(function(){ $('#question{QID} input[type="text"]').keyup(function () { if ($(this).val().length >= 1) { $(this).closest('.answer-item').next('.answer-item').find('input[type="text"]').focus(); } }); }); </script>