- Posts: 6
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
$(document).on('ready pjax:scriptcomplete',function(){ // Delay before redirecting in seconds var sleepTime = 60; var redirectTimeout; function startTimer() { redirectTimeout = setTimeout(function() { window.location.href = 'https://pathTo/limeSurvey/index.php/123456?newtest=Y'; }, sleepTime*1000); } function stopTimer() { clearTimeout(redirectTimeout); } startTimer(); $('input, textarea, button').on('click change keyup', function(e) { stopTimer(); startTimer(); }); });