up vote 0 down vote favorite
share [g+] share [fb]

I have a YUI application. Under certain circumstances I want to alert the user before he closes the window. Therefore I capture the window close event and do

onWindowClose: function(e) {
    	if (...)
    	{
    		YAHOO.util.Event.preventDefault(e);
    	}
    }

The browser shows a standrd message: "Are you sure you want to navigate away from this page? Press OK to continue, cancel to stay in the current page".

How can I customize the message the browser shows?

link|improve this question

feedback

1 Answer

Your Answer

 
or
required, but never shown

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