When i close this page from browser a alert box is open to ask "Leave this page" or "stay on this" that is ok. But when submit form from Submit button given below it again ask and show this alert box . how i disable this when submit form it should not be ask and show alert box ??
<script>
window.onbeforeunload = function(e) {
return 'You application form is not submitted yet.';
};
WinPrint.document.write('<span style="font-size:22px">' + prtContent.innerHTML + '<span>');
</script>
<div>
<input type="submit" name="" class="button" value="Save Your Application Form" onclick="if(document.getElementById('thumb').value=='') { alert('Please select your photograph.'); return false; } return confirm('Read your application form thoroughly before submitting, Once submitted data, it will not changed in any case, press OK to submit or press CANCEL to make corrections.'); return false;" style="text-align:center !important; float:none !important;"/>
</div>
$(document).on("submit", "form", function(event){
window.onbeforeunload = null;
});
Should do the trick
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With