vote up 3 vote down star
1

When I try to close my Google docs tab with unsaved changes, this is what I get in my browser (FF 3.5).

Are you sure you want to navigate away from this page?

You have unsaved changes in this document. Click Cancel now, then 'Save' to save them. Click OK now to discard them.

Press OK to continue, or Cancel to stay on the current page.

My question is whether such alerts are part of the web app (gdocs for eg.) or are they given out by the browser? If latter, how is this done?

flag

52% accept rate

4 Answers

vote up 10 vote down check

By the browser. It's the onbeforeunload handler that returns the customized text of the dialog, which is only the middle of the three paragraphs - the other two paragraphs as well as the text of the buttons cannot be customized or otherwise changed.

window.onbeforeunload = function(){ return 'Testing...' }

Will yield a dialog that says

Are you sure you want to navigate away from this page?

Testing...

Press OK to continue, or Cancel to stay on the current page.

You can nullify this by setting the handler to null

window.onbeforeunload = null;

Which StackOverflow itself does in a few places ;)

link|flag
Thanks Peter. I have looked into how the modern browsers behave wrt the onbeforeunload event and posted my findings. Please add on any other intricate details that you know. – Vijay Dev Aug 21 at 17:39
vote up 1 vote down

Peter Bailey's answer made me curious to check this behaviour across browsers. Here are some findings:

FF 3.5, IE 8 (on Mac and Windows): The message as mentioned in my question with the OK, Cancel buttons with customized middle paragraph.

Opera (on Mac and Windows): The onbeforeunload event is NOT fired at all. The browser just closes off causing any unsaved changes to be lost.

Safari (on Mac): This is the weirdest case of all. The message I got is as below:

Safari Alert during onbeforeunload

I wonder where I can find the "Stay on this Page" and "Leave this Page" buttons?

link|flag
1  
Google Docs must have mistaken Safari for Google Chrome, which displays much more informative buttons. – Elijah Grey Aug 22 at 4:49
vote up 0 vote down

The alerts are part of the web application. View the source code and look at the javascript.

link|flag
Look for "onBeforeUnload". – John Fisher Aug 17 at 17:16
I cannot see it in Google Docs source, at least. – Vijay Dev Aug 17 at 17:22
It's likely buried in some obscure JavaScript file. Google uses scripts that make their JavaScript files essentially unreadable to a human. – ceejayoz Aug 17 at 17:31
vote up -3 vote down

You are probably looking for "onUnload"

<body onUnload=alert('Please dont leave! I love you!');>

or

<body onUnload=exitfunction();>
link|flag
2  
This is not the correct usage of onunload for page exit control. Not only did you omit the necessary double quotes - all your doing here is triggering an alert, and not actually triggering the unload confirm dialog. – Peter Bailey Aug 17 at 17:23
Hey, don't be mean. >:P – mcandre Aug 17 at 17:46
I'm not being mean, I'm being to the point. The point here is to disseminate accurate, usable information. It's why we have "downvote" and "comment" mechanisms in addition to the ability to "answer" and "upvote" questions. – Peter Bailey Aug 17 at 18:07
Awwwwwwwwwwwwwww :( But ok, i will keep it real – lekimeki Aug 17 at 20:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.