Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

74
votes
8answers
56k 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 ...
14
votes
1answer
864 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 ...
14
votes
5answers
23k 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 ...
11
votes
3answers
2k 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 ...
11
votes
2answers
3k 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 ...
10
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 ...
9
votes
7answers
2k 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 ...
9
votes
6answers
12k 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 ...
8
votes
5answers
2k 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 ...
6
votes
1answer
1k 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 ...
5
votes
6answers
335 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 ...
5
votes
1answer
479 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
1answer
1k 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
5answers
4k 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 ...
5
votes
3answers
659 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 ...
4
votes
3answers
904 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
2answers
848 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 ...
4
votes
5answers
2k views

Activating OnBeforeUnload ONLY when field values have changed

Hey guys, 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() ...
4
votes
2answers
5k 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 ...
3
votes
2answers
117 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"> ...
3
votes
3answers
323 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
3
votes
2answers
218 views

jQuery, onBeforeUnload and ASP.Net form

I have the following solution for stopping the users from accidentally leaving my registration page: var warning = true; function CheckExit() { if (warning) { return "Changes done. ...
3
votes
1answer
319 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 ...
3
votes
1answer
195 views

Preventing Gmail From Closing / Keeping It Visible

Disclaimer before the uppity types start in: This is not to be deployed "in the wild". This is for local, personal use by a Chrome add-on only. I am not trying trick visitors to my sites or do ...
3
votes
4answers
1k 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 ...
3
votes
1answer
335 views

window.onbeforeunload performing query

I'm trying to perform a post query when the user leaves the page. The code I'm working with is <script type="text/javascript"> window.onbeforeunload = function(){ var used = ...
3
votes
1answer
275 views

How to make Connect not callback when reload page in YUI?

I found this a common issue, but it seems that there is no obvious solution after googling. In my page, some user action would trigger AJAX request. With YUI 2.X, the code is like below: ...
3
votes
2answers
255 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 ...
3
votes
1answer
442 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 ...
3
votes
4answers
530 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 ...
3
votes
1answer
1k 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 ...
3
votes
3answers
2k 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 ...
3
votes
1answer
471 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 ...
3
votes
4answers
532 views

How to reliably send a request cross domain and cross browser on page unload

I have javascript code that's loaded by 3rd parties. The javascript keeps track of a number of metrics, and when a user exits the page I'd like to send the metrics back to my server. Due to XSS ...
3
votes
3answers
5k 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 ...
3
votes
7answers
2k views

window.beforeunload called twice in Firefox - how to get around this?

I'm creating a popup window that has a beforeunload handler installed. When the "Close" file menu item is used to close the popup, the beforeunload handler is called twice, resulting in two "Are you ...
3
votes
1answer
832 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 ...
3
votes
2answers
2k 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 ...
3
votes
4answers
6k 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 ...
2
votes
2answers
237 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 ...
2
votes
3answers
164 views

How to determine when a user is leaving a webpage (excluding certain links)

The situation: I have a Grails webpage with two tables. One table displays a persons information (including certain flags), and the second table has a list of flags with an "add button" that allows ...
2
votes
1answer
53 views

What user actions trigger beforeunload in which browsers?

closing window refreshing page clicking on a link ?? It seems to be inconsistent. (I'm shocked!) Is there a list somewhere? I'm particularly interested in Firefox, but am curious about others, as ...
2
votes
1answer
160 views

JavaScript: trying to exit onbeforeunload function in an if statement

I have the following JavaScript code at the head section of the page: window.onbeforeunload = function() {var r=confirm("Really leave?"); if (r==true) { self.close; } else { break; }} After ...
2
votes
1answer
436 views

Check if window.onbeforeunload has been triggered by a page refresh?

I have a function like this to prompt the user to confirm they want to navigate away from the page: window.onbeforeunload = function() { return "You may lose any unsaved changes."; }; Now ...
2
votes
3answers
772 views

Jquery help needed for onbeforeunload event

I am using jquery onbeforeunload event in asp.net application. If i write event as given below then its working fine and display confirm dialog box. var vGlobal = true; var sMessage = "Leaving the ...
2
votes
1answer
799 views

window.onbeforeunload, but for a frame?

I'm trying to put up a warning message about leaving a webpage, but it is nested inside a frameset. Apparently window.onbeforeunload triggers if I load the webpage as the root page in the browser, ...
2
votes
1answer
554 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 ...
2
votes
1answer
286 views

Display alert if conditions are met, almost like onbeforeunload

I have a form broken into 5 steps. Currently if you refresh/exit/close etc on steps 2-4 it returns a message via window.onbeforeunload no issues there. window.onbeforeunload = function () { ...
2
votes
3answers
664 views

Displaying a custom dialog when the user exits the browser?

Yes, I realize this is horrible UI and bad accessibility wise, but I am forced to seek out the options due to contracted work ( to which I didn't initially agree upon and am stuck with ). I know that ...
2
votes
3answers
939 views

onbeforeunload event on iframe is not triggered in google chrome, works in IE, firefox

If you set an unbeforeunload event inside an iframe, this is not triggered when you for instance click through to a link in the iframe. It works in IE and Firefox (not Opera, but Opera does not ...

1 2 3 4