I have a small problem. I'm attempting to catch the OnUnLoad Event of the Window and ask a confirmation question and if the user decides they want to stay then fine, and if they want to leave the page then they'll lose all unsaved data. Here's the issues...

I'm using a jQuery UI Dialog and when I put the following code on my page, I have the Dialog open, and when I click the back button on the browser, it never pops up the msgbox. It just refreshes the page:

<script type="text/javascript"> 
    $(window).bind('beforeunload', function() 
        { 
            alert('you are an idiot!'); 
        } 
    );
</script>

And the solution that I'm using was a post here. Again, the msgbox will display fine if I do not have the jQuery UI Dialog open. If I do, then it doesn't display the msgbox and just refreshes the page.

Any ideas?

link|improve this question

71% accept rate
Which browser are you using? The onbeforeunload event isn't specified in w3 standards, so some browsers which are standard-strict doesn't support it. The well known example is Opera. – BalusC Dec 11 '09 at 17:06
IE8, and tried it in Compatibility mode and didn't work either... – Keith Dec 11 '09 at 17:15
how can I add a qualifier to this? I want this message to only show if the user has made some modifications to the text of the page. – Nicholas Jun 13 '11 at 21:41
@Nicholas: this post shows how to turn it on/off by calling a function: stackoverflow.com/questions/1244535/… – Homer May 11 at 15:34
feedback

5 Answers

up vote 30 down vote accepted

The correct way to display the alert is to simply return a string. Don't call the alert() method yourself.

<script type="text/javascript">
    $(window).bind('beforeunload', function() {
        if (iWantTo) {
            return 'you are an idiot!';
        }
    }); 
</script>
link|improve this answer
1  
So if I'm returning a string, how do i tell if they said Ok or Cancel? or does it matter? I actually want a confirm('are you an idiot?'); and then capture which result they chose. You have any clue on where I would start on that? – Keith Dec 11 '09 at 17:16
1  
If they click Cancel, they stay on the page. If they click Ok, they leave the page. – Jordan Ryan Moore Dec 11 '09 at 17:38
But read my actual issue. This works fine if the jQuery Dialog is not open. If it's open, the confirm does not display and the page just refreshes... – Keith Dec 11 '09 at 17:39
And to add to my response a bit, you say if they click cancel they stay on the page...with a confirm it's either Yes or No. What's the syntax to keep them on the page if they click yes? And to allow them to navigate back if not? – Keith Dec 11 '09 at 17:44
3  
For security reasons, the browser doesn't allow you to customize the buttons or the result of the dialog box. In regards to how a jQuery dialog is affecting the unload event, posting the rest of your code would be helpful. – Jordan Ryan Moore Dec 11 '09 at 18:03
show 1 more comment
feedback

jQuery API specifically says not to bind to beforeunload, and instead should bind directly to the window.onbeforeunload, I just ran across a pretty bad memory in part due binding to beforeunload with jQuery.

link|improve this answer
6  
You should link your reference to this answer, it would give people a place to start digging deeper into the issue. – NickLarsen Jul 18 '11 at 19:58
3  
As far as I can see, jQuery's documentation just says: The beforeunload event is supported cross-browser in jQuery 1.5.1 and 1.6+, but is not supported in IE for jQuery 1.5.2 due to a regression. – StriplingWarrior Oct 13 '11 at 21:29
feedback

this works for me

$(window).bind('beforeunload', function() { return 'Do you really want to leave?' ; });

link|improve this answer
feedback

You can also make an exception for leaving the page via submitting a particular form:

$(window).bind('beforeunload', function(){
    return "Do you really want to leave now?";
});

$("#form_id").submit(function(){
    $(window).unbind("beforeunload");
});
link|improve this answer
feedback

A Good way to work arround this Problem is

$("a").click(function(event) {
  /**
   Do Some UI stuff here
  **/
  event.stopImmediatePropagation();
  event.preventDefault();
}); 
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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