The onbeforeunload event is triggered before a user navigates away. This event listener can be used to show a confirmation dialog to the user on page leave.

learn more… | top users | synonyms

142
votes
11answers
100k views

How can I override the OnBeforeUnload dialog and replace it with my own?

I need to warn users about unsaved changes before they leave a page (a pretty common problem). window.onbeforeunload=handler This works but it raises a default dialog with an irritating standard ...
38
votes
12answers
35k views

How to show the “Are you sure you want to navigate away from this page?” when changes committed?

Here in stackoverflow, if you started to make changes then you attempt to navigate away from the page, a javascript confirm button shows up and asks: "Are you sure you want to navigate away from this ...
34
votes
5answers
56k views

jQuery UI Dialog OnBeforeUnload

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 ...
21
votes
3answers
5k views

window.onbeforeunload not working on the iPad?

Does anyone know if the onbeforeunload event is supported on the iPad and/or if there's a different way to use it? I've tried pretty much everything, and it seems like the onbeforeunload event is ...
21
votes
1answer
4k views

Is there an alternative method to use onbeforeunload in mobile safari?

Is there an alternative method to use instead of onbeforeunload in mobile-safari? I've noticed that Google was able to capture the onbeforeunload event in mobile-safari. Has anyone figured out how ...
18
votes
8answers
21k views

Can I prevent window.onbeforeunload from being called when doing an AJAX call

I have an AJAX-based grid control. We hook into the window.onbeforeunload event to check if they have unsaved data and if so present them with a message "Are you sure you want to navigate away...you ...
14
votes
1answer
4k views

Is there any way to use window.onbeforeunload on Mobile Safari for iOS devices?

Looks like Apple has disabled the window.onbeforeunload event for iOS devices (iPhone, iPad, iPod Touch). Unfortunately I can't find any documentation as to why this event doesn't work in Mobile ...
13
votes
5answers
4k views

Browser waits for ajax call to complete even after abort has been called (jQuery)

I have some (potentially) long-running ajax calls that I would like to abort if the user navigates to another page. The following jQuery code calls abort on all pending XMLHttpRequest objects upon ...
12
votes
3answers
5k views

Google chrome onbeforeunload wrong behavior with iframe

Let say I have two pages. One of them contains another one inside as iframe. If you subscribe to onbeforeunload event on the parent page, then this event doesn't triggers if you close tab when iframe ...
11
votes
3answers
1k views

Testing onbeforeunload events from Selenium

I'm trying to write a Selenium test for a web page that uses an onbeforeunload event to prompt the user before leaving. Selenium doesn't seem to recognize the confirmation dialog that comes up, or to ...
10
votes
4answers
5k views

How can I prevent window.onbeforeunload from being triggered by href links in IE?

I'm building a fail safe for my form that is going to warn users that if they leave the page their form data will be lost (similar to what gmail does). window.onbeforeunload = function () { ...
10
votes
3answers
8k views

onbeforeunload in Opera

I'm using the code that netadictos posted to the question here. All I want to do is to display a warning when a user is navigating away from or closing a window/tab. The code that netadictos posted ...
10
votes
4answers
4k views

Crossbrowser onbeforeunload?

Does window.onbeforeunload() fire in all browsers? I need a onbeforeunload functionality which is supported at least by IE6 and FF3.6. For IE, onbeforeunload() seems only to be supported by IE9
9
votes
8answers
5k views

Internet Explorer calling window.onbeforeunload on window.open and AJAX calls

Ok, I have spent a while on this problem and this is what I have gathered: If you make an AJAX call in IE7 and you have a window.onbeforeunload function specified, it calls the onbeforeunload ...
8
votes
5answers
7k views

ASP.NET, jQuery, dirty forms, and window.onbeforeunload

In my ASP.NET web app, I'm trying to create a universal way of warning users before navigating away from a form when they've made changes, using jQuery. Pretty standard stuff, but after a lot of ...
7
votes
2answers
2k views

Does onbeforeunload event trigger for popup.html in a google chrome extension?

I'm writing a google chrome extension with a popup and a background page. The popup subscribes to certain events that the background generates, and I would like to unsubscribe from those events when ...
7
votes
3answers
1k views

Running server-side function as browser closes

Background: I'm creating a very simple chatroom-like ASP.NET page with C# Code-Behind. The current users/chat messages are displayed in Controls located within an AJAX Update Panel, and using a Timer ...
7
votes
2answers
2k views

How to intercept the onbeforeunload event in a WebBrowser control?

I have a WinForms application in which I have hosted a web page inside a WebBrowser control. The contents of the web page is the following: <!DOCTYPE html> <html lang="en" dir="ltr"> ...
7
votes
3answers
3k views

Detecting whether user stayed after prompting onBeforeUnload

In a web app I'm working on, I'm capturing onBeforeUnload to ask the user whether he really wants to exit. Now, if he decides to stay, there are a number of things I'd like to do. What I'm trying to ...
6
votes
4answers
5k views

Way to know if user clicked Cancel on a Javascript onbeforeunload Dialog?

I am popping up a dialog box when someone tries to navigate away from a particular page without having saved their work. I use Javascript's onbeforeunload event, works great. Now I want to run some ...
6
votes
5answers
805 views

Autosave with “unload” event and ajax call on logout : order of actions is causing problem

I'm using a AutoSave feature on an online editor. When an user leaves the page (detected with unload or beforeunload event), I'm sending a AJAX request (async = false) to save the data. I have a ...
6
votes
2answers
1k views

Javascript: suppress “This page is asking you to confirm that you want to leave” popup on onbeforeunload

When a user leaves a page, I need to ask him if he wants to perform a particular action before leaving. <script type="text/javascript"> $(document).ready(function() { ...
6
votes
1answer
3k views

How to collect return value of onbeforeunload

I am displaying a warning message if user try to close window without saving the form. window.onbeforeunload = askConfirm; function askConfirm() { // needToConfirm is set to true ...
6
votes
1answer
2k views

Dismiss “Confirm Navigation” popup with Watir

I am trying to dismiss "Confirm Navigation" popup. This is how it looks like in Chrome. To see the popup: require "watir-webdriver" browser = Watir::Browser.new browser.goto ...
6
votes
1answer
1k views

Using onbeforeunload event with Google Analytics to record page exits and therefore more accurately record user time on page / site

I have been trying to research the hack proposed by Avinash Kaushik in his book Web Analytics 2.0. He poses the problem whereby most web analytics tools are unable to record the time a user spent on ...
6
votes
1answer
3k views

window.onbeforeunload may fire multiple times

Just because you don't see use for a feature doesn't mean it isn't useful. The Stack Exchange network, GMail, Grooveshark, Yahoo! Mail, and Hotmail use the onbeforeunload prompt to prevent/warn users ...
5
votes
3answers
19k views

Setting onbeforeunload on body element in Chrome and IE using jQuery

I have a system where I want to check with the user if they're sure they want to leave the page once a dirty flag is set. I'm using the following code - In FireFox, I can look at the page source ...
5
votes
3answers
7k views

onbeforeunload confirmation screen custumization

Is it possible to create a custom confirmation box for the onbeforeunload event in a browser? I tried but then I get 2 confirmation boxes (one from me which is nothing more than return confirm... and ...
5
votes
5answers
4k views

Activating OnBeforeUnload ONLY when field values have changed

What I'm trying to achieve is to Warn the user of unsaved changes if he/she tries to close a page or navigate away from it without saving first. I've managed to get the OnBeforeUnload() dialog to ...
5
votes
4answers
3k views

onbeforeunload event is too enthusiastic in IE9

Here's some sample test html: <!DOCTYPE html> <html> <body> <a href="javascript:alert('Not going anywhere!');">Go nowhere 1</a> <a ...
5
votes
1answer
1k views

How to display onbeforeunload dialog when appropriate?

I've got an editor in javascript on my webpage and I would like to ask user if he/she wants to leave the page even if there are unsaved changes. I know I can add custom message to the "onbeforeunload ...
5
votes
1answer
3k views

Difference between onbeforeunload and onunload

What are the differences between onbeforeunload and onunload ? Also I have a specific question related to it's use on the iPad...I have a page (myPage.html) where I am trying to show an alert when the ...
5
votes
1answer
1k views

Customize onbeforeunload dialog box

I've got an onbeforeunload event working that pops up a dialog box warning users about unsaved changes to a form when they navigate away. window.onbeforeunload = function() { return 'You have ...
5
votes
3answers
2k views

Javascript onbeforeunload Issue

Alright, I have an issue with the following code. What happens is when a user closes their browser, it should prompt them to either click OK or click CANCEL to leave the page. Clicking OK would ...
5
votes
2answers
444 views

Performing GET request before leaving page - Javascript

if a GET request is made as follows $(window).bind('beforeunload', function() { // GET request }); and the page is abandoned before the GET request is completed, will the destination server ...
5
votes
2answers
729 views

Safari stays “loading” when window.onbeforeunload returns false

The following gist: https://gist.github.com/1876791 (borrowed from the demo in this question) is a dead simple example of usage of window.onbeforeunload in js. The problem we have is the following ...
4
votes
4answers
9k views

Can I pop up a confirmation dialog when the user is closing the window in Safari/Chrome?

In IE and FF, i can attach an event handler to onBeforeUnload, and by passing a string to a property of the event, the user will see a dialog asking him whether he wants to continue with the ...
4
votes
3answers
2k views

Check if user hits back button in browser

I'm trying to use the javascript onbeforeunload event to ask the user if they want to exit the page, but I don't want the event to fire (EDIT: "the event" being the dialog box that pops up asking the ...
4
votes
1answer
4k views

Multiple onbeforeunload() and onunload() events

I have a strange issue from a client in that our code, which they include uses onbeforeunload() to trigger a dialog, but they are also including another companies code which also binds this event ...
4
votes
1answer
1k views

“Unknown Exception” when cancelling page unload with “location.href”

I'm capturing the window.onbeforeunload event using the following code: window.onbeforeunload = function (evt) { if(checkIsDirty()) { var message = 'If you continue your ...
4
votes
1answer
1k views

Cancel onbeforeunload event handler?

I have an onbeforeunload event handler attached to the page which executes every time the page reloads / gets redirected. window.onbeforeunload = function() { console.log("do something");} I do ...
4
votes
1answer
2k views

Window beforeunload shows two dialogs

I have this jQuery code; $(function () { $(window).unbind("beforeunload"); $(window).bind("beforeunload", function () { return confirm("Really?"); }); }); When i close my window ...
4
votes
1answer
4k views

window.onbeforeunload in Chrome: what is the most recent fix?

Obviously, window.onbeforeunload has encountered its fair share of problems with Chrome as I've seen from all the problems I've encountered. What's the most recent work around? The only thing I've ...
4
votes
1answer
7k views

onbeforeunload - bind to selective events

I am working on a enterprise application where forms a generated dynamically and we don't have control over the code. Most of the controls in the form have following code associated to them ...
4
votes
3answers
3k views

Detecting browsers that don't support onunload/onbeforeunload

Of all the browsers, it seems that only Opera doesn't support onunload/onbeforeunload events. (It's been fifteen years now, Opera!) Solutions for this issue have been covered many times, here for ...
4
votes
1answer
4k views

onbeforeunload doesn't seem to work in Safari or Chrome

I am working on this page: http://www.weloveflyers.co.uk/order.php After someone has entered their order details and click "Let's Go!" the order information is captured, displayed for them to check ...
4
votes
3answers
4k views

Is there anyway to prevent onbeforeunload event from triggering when using internet explorer

I have a function that is suppose to trigger when user closes their browser and I have put the code in the "window.onbeforeunload" function. The thing is every time if I reloads the page in Internet ...
4
votes
1answer
1k views

Can OnBeforeUnload run code if they accept the dialog?

I want to control how easily people can leave my app. Now, I know I can't do it completely; that's what cron jobs are for. But I'd like to catch as many cases as possible. I thought, I could use ...
4
votes
1answer
131 views

Distinguish onbeforeunload for File Download vs Page Change

I have an onbeforeunload event that's supposed to get triggered any time a user goes to a new page. It works well enough, but I've found that it also gets triggered in Chrome any time a user downloads ...
3
votes
4answers
25k views

JavaScript + onbeforeunload

I have a query regarding my application. Whenever user closes browser window accidentally I'd want to do some clean up operations before that. I have used onunload event but problem is this event is ...

1 2 3 4 5 7