Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

3 Answers

up vote 37 down vote accepted

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 ;)

share|improve this answer
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 '09 at 17:39

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?

share|improve this answer
3  
Google Docs must have mistaken Safari for Google Chrome, which displays much more informative buttons. – Eli Grey Aug 22 '09 at 4:49
The current Firefox version (20) ignores the custom message. – Merijn May 6 at 14:56

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

share|improve this answer
Look for "onBeforeUnload". – John Fisher Aug 17 '09 at 17:16
I cannot see it in Google Docs source, at least. – Vijay Dev Aug 17 '09 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 '09 at 17:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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