Here's hoping for your help in this matter. I currently saw here that the script below would pop-up confirmation before clicking the submit button and after adding this line to one of the question nothing seems to happened when clicking the submit button.
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
// Interrupt the submit function
$('#movenextbtn, #movesubmitbtn').click(function(){
if(confirm('This is your final submission of survey. Do you want to continue?')) {
return true;
}
else {
return false;
}
});
});
</script>
Add to that i had tested a simple javascript alert box and it worked.
Thank you very much in advance for the help on this. Currently using Limesurvey 3.23.0.