I have a scenario, I have to save the changes when user clicks yes on window.onbeforeunload
for that I need to submit the form and nothing should be happen when selected no.
Any help is greatly appreciated.
I have tried this:
window.onbeforeunload= function(){
var r = confirm("Are you sure you want to leave this page?");
if (r == true) {
readForm.action = '/SREPS/read.do' ;
readForm.submit();
}else{
return false;
}
}
It did not worked 100% when ever we hit Cancel during window.confirm
another dialog appears saying that message from web page false asking for confirmation leave this page and stay on this page. In this case if the user selects leave this page. I am not able to submit the form.