Do you mean that without the delay we might end up with the wrong answer in the database?
Is the 300 ms an educated safe guess or do we need more to be 100% safe?
Would this code line work?:
Is the 300 ms an educated safe guess or do we need more to be 100% safe?
Would this code line work?:
$(document).ready(function() {
$('.yes-no .radio').on('change', function(e) {
$('#movenextbtn, #movesubmitbtn').delay(300).trigger('click');
});
});