Can anybody provide me an custom alert box saying "you are about to leave page and changes will be discarded" Yes/no.
I tried with following code but its giving me default message saying "Changes you made may not be saved"
here is my javascript code
unsaved=true;
window.onbeforeunload = function() {
if (unsaved)
{
var _message = "You currently have unsaved changes!!!\n\nAre you sure you want to exit without saving.\n\nChoose ‘Leave this page’ to exit without saving changes.\nChoose ‘Stay on this page’ to return to the billing profile.";
return _message;
}
}
Also I have no form but simple button which I can't include in form, on click of that button also it giving me warning. Here is Fiddle to try, any help really appreciated thank you. I know there are questions asked on this topic earlier but believe me none are working now. update there are some methods explained in previous StackOverflow examples but they dont work now in modern browsers.