Hello Community
I found this solution for autoproceed to the next question:
forums.limesurvey.org/forum/can-i-do-thi...ting-answer?start=20
It work perfectly fine for image_select and for default radio button... but i want to use it for BootStrapButton
So my settings: Sigle choice questions --> List (radio); Question theme --> Bootstrap Buttons
I tried (type = button):
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$('#question{QID} input[type="button"]').on('click', function() {
$('#ls-button-submit').trigger('click');
});
});
</script>
and this (type = radio ; works fine for default and image_select):
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$('#question{QID} input[type="radio"]').on('click', function() {
$('#ls-button-submit').trigger('click');
});
});
</script>
thanks for help
greetings Basil