I am trying to call this confirmation function on onbeforeunload
event but its not getting called. What am I missing here?
I am calling this inside the body tag:
<body onbeforeunload="confirmation();">
I also tried:
<body onbeforeunload="return confirmation();">
Code:
function confirmation(){
var answer = confirm('You have unsaved changes!!');
if(answer == true)
{
alert('Bye Bye!!!');
}
else{
alert('You are staying');
return false;
}
}
I am trying to call this confirmation function on onbeforeunload
event but its not getting called. What am I missing here?
I am calling this inside the body tag:
<body onbeforeunload="confirmation();">
I also tried:
<body onbeforeunload="return confirmation();">
Code:
function confirmation(){
var answer = confirm('You have unsaved changes!!');
if(answer == true)
{
alert('Bye Bye!!!');
}
else{
alert('You are staying');
return false;
}
}
Share
Improve this question
edited Jan 10, 2023 at 23:01
Brian Tompsett - 汤莱恩
5,89372 gold badges61 silver badges133 bronze badges
asked Jun 2, 2011 at 18:09
t0mcatt0mcat
5,67919 gold badges47 silver badges58 bronze badges
4
- Can you please clarify either your sample code or your title to reflect which event you are trying to capture? – Mike Clark Commented Jun 2, 2011 at 18:12
- 1 Where's the onbeforeunload? :) – TweeZz Commented Jun 2, 2011 at 18:12
- 1 That's not how a "beforeunload" handler works. Read this.. As it is now, regardless of the answer to your "confirm()" call, the page will be reloaded. – Pointy Commented Jun 2, 2011 at 18:14
- Hi tweeZz, I didnt post it. it's just <body onbeforeunload="confirmation()"> – t0mcat Commented Jun 2, 2011 at 18:15
2 Answers
Reset to default 5That's not remotely how onbeforeunload
works, and the code contains syntax errors.
window.onbeforeunload = function (e)
{
var e = e || window.event,
message = 'You have unsaved changes!!';
// For IE and Firefox prior to version 4
if (e)
{
e.returnValue = message;
}
return message;
}
Soooo.. You're trying to ask the user for confirmation when he made changes on your page that will not be saved if he leaves the page. Is that correct?
If so, then that seems to be possible. Try the following on SO. Start to write an answer on this question and then try to close the browser window.
I tested in Chrome 12, FF 4.0.1 and IE 9.
All 3 browsers show a popup window. It seems they all contain a custom text. Chrome shows the cleanest message, meaning a popup with only the custom message and 2 buttons.
In all 3 browsers trying to close the browser in any normal way triggers a popup that allows the user to choose if he maybe doesn't rather stay on the page and finish what he started. If he does want to leave, he can. (killing the browser process or a puter shutdown might not do what you would like thoug :) ).
Internet Explorer:
Firefox:
Chrome:
I would try the suggestion of hooking up a function that returns a string to the window.onbeforeunload event. Try this:
<script>
window.onbeforeunload = function (evt) {
var message = 'You have started writing or editing a post.';
if (typeof evt == 'undefined') {
evt = window.event;
}
if (evt) {
evt.returnValue = message;
}
return message;
}
</script>