Hi,
you did not mention how you want to display your survey (question by question, group by group)
But there are several options.
1. We often recommend to display "group by group" with only one question in each group (to keep as much flexibility as possible).
Now add a question of type "text display" to this group. Set the timer in the text display question.
2. Use a javascript snippet to trigger the "Submit" button.
Insert this into the source code of the question
Code:
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
setTimeout(function () {
$('#ls-button-submit').trigger('click')
}, 5000); // Nach 5 Sekunden, Wert ist in Millisekunden
});
</script>
Joffm