tags:

views:

71

answers:

2

As per how StackOverflow does it when you are adding a question or replying to a question;

I'd like to prompt the user with a;

"Are you sure you want to navigate away from this page"
"Press OK to continue or Cancel to stay on this page"

I've tried a couple of js snippets i've found on ze internet, but nothing quite cuts the mustard.

+3  A: 

You need to implement window.onbeforeunload and return your message from it as a string:

window.onbeforeunload = function() {
    if (theUserHasStartedEditing) {
        return "You have started writing or editing a post."
    }
}

There's an online demo here: http://www.4guysfromrolla.com/demos/OnBeforeUnloadDemo2.htm

RichieHindle
A: 

This question has already been covered.

Peter Bailey
yep, but i couldn't find it when searching.
GordonB