- Posts: 2
- Thank you received: 1
Ask the community, share ideas, and connect with other LimeSurvey users!
<script type="text/javascript" charset="utf-8"> $(document).ready(function() { // Hide the "Next" button $('#movenextbtn, #movesubmitbtn').hide(); // Delay in milliseconds var timeSpan = 5000; // Timer to click "Next" setTimeout(function() { $('#movenextbtn, #movesubmitbtn').trigger('click'); }, timeSpan); }); </script>