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

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
1answer
558 views

Combining the jQuery onbeforeunload event with jQuery UI Modal Message

I'm having trouble combining the jQuery onbeforeunload event with the jQuery UI Modal Message. I'd like to use the jquery onbeforeunload event to check if a form has been submitted yet or not, and if ...
3
votes
1answer
826 views

ajax and onbeforeunload

I want to inform my server that a user has closed browser tab/window with our app. I found out that running an ajax call with async:false binded to a window.beforeunload evet will work and it does. ...
3
votes
1answer
448 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: ...
2
votes
1answer
105 views

Internet explorer fires 'on(beforeunload)' when lightbox pops up

Here is my code: $(window).on('beforeunload', function() { if ($('.jqmCustomize').css('display') == 'block') return 'You have not save your customization yet.'; }); This works fine on ...
2
votes
1answer
115 views

Check if onbeforeunload is supported using PHP

Is it possible to check onbeforeunload event using PHP.
1
vote
1answer
133 views

AJAX calling being aborted before it is complete with Backbone.js

I've followed this answer on how to abort all AJAX requests on page redirection. It basically uses ajaxSend to add the xhr request object to an array and then ajaxComplete to remove that object from ...
1
vote
1answer
322 views

Is possible to display jquery popup meanwhile onbeforeunload trigger call?

Is this possible to open jquery popup when onbeforeunload event call? Please check in image url here I have html content with one button and google link. Now when I click on tab or window close I ...
2
votes
0answers
240 views

IE9 browser crashes if we close the window before it finishes loading

I have a situation here, when I am closing the IE9 browser window before it finishes loading, then the browser is getting closed and reopen. This results in my web application to crash. After some ...
2
votes
0answers
1k views

Chrome onbeforeunload event when tab (or browser) closes

I'm trying to run a function when the user leaves (closes) the browser or the page and I've got it working in all the browsers except Chrome. Chrome runs the function successfully if I navigate away ...
1
vote
0answers
70 views

How i find which event is working on window.onbeforeunload?

How i find which event is working on window.onbeforeunload? for example refresh, back, browser close etc <script language="JavaScript" type="text/javascript"> window.onbeforeunload = ...
1
vote
0answers
31 views

How to detect when the chrome devtools is closed and trigger a function in background.js

I'm currently writing a chrome extension that has it's own panel in the Devtools. Although I'm facing an issue. I'm trying to trigger some action in the background page when the Devtools panel of a ...
1
vote
0answers
68 views

upload terminates before 'before unload' response is recieved

I have this 'before unload' warning which alerts when an ajax file upload is in progress and the user navigates away before it has finished. But (in chrome and safari) if the user uses 'back' or ...
1
vote
0answers
202 views

Prevent JavaScript Redirect

I need to prevent any page redirect/reloading caused by JavaScript (e.g., window.location.href = 'http://some.thing' or window.location.reload()). Also I need, that no prompt window is displayed for ...
1
vote
0answers
112 views

How to prevent client disconected on unload event with nowjs?

I develop an application with node.js, nowjs and expressjs server side and javascript / jquery client side. I have a trigger client side when the client leave the page without saving the document ...
1
vote
0answers
161 views

Chrome back button terminates upload stream unexpectedly

I'm providing users form-based file uploads (one at a time) with ajax updates/progress bars. I want to give them a heads up if they navigate away that any current upload will be canceled. The ...
1
vote
0answers
108 views

Need to automatically sign out a Instant Messenger user when browser window is closed

I have a Web-based Chat application, that refreshes periodically say every 30 secs, polling for new messages. If the user does not explicitly sign out using a "Sign Out" button, but accidentally ...
1
vote
0answers
527 views

How gmail handle its onbeforeunload event in opera?

I'm looking for something similar to gmail on how it handle the onbeforeunload event in Opera. As we know opera doesn't support onbeforeunload event. But when I compose a new message on gmail using ...
1
vote
0answers
40 views

'pinging' if site busts out of frames

I was wondering if there is any method of checking if a site will bust out of an iframe before my app puts it in an iframe. Alternatively maybe someone knows of a database api that has this info. ...
1
vote
0answers
549 views

onbeforeunload problem in chrome

I have implemented unsaved changes warning before tab out to other page. So I need to save the current form before the page unload. I trigger these functions using onbeforeunload event. ...
0
votes
0answers
7 views

ASP.NET MVC - onbeforeunload and clientside validation in IE

In my JavaScript I have a handler for the window.onbeforeunload event which shows a progress indicator whenever a page is refreshed or submitted. In Google Chrome: If the page has any validation ...
0
votes
0answers
25 views

Is their any solution for onBeforeUnload and onunload event overriding?

I want to override onbeforeunload and create custom popup for it is their any solution? I am trying to open a new website it same tab on click of leave page. here is sample i am trying. ...
0
votes
0answers
12 views

Onbeforeunload won't work in Firefox if history is remembered

I have a working Flex4 application using FORM authentication in IE using the onbeforeunload event (see below), but when the same application is run in FF, the user doesn't log out when the browser ...
0
votes
0answers
12 views

Which fires first: onpopstate or onbeforeunload?

When a visitor tries to leave a page in my site, I would like to confirm navigation and run a function except when the user hits the back button. Some believe this functionality is impossible; ...
0
votes
0answers
14 views

How to logout and redirect a URL

With my application so far, I am able to logout the user if they change the URL address, but unable to forward them to their URL. When the user is in my Flex application and goes to a new URL, a ...
0
votes
0answers
85 views

iframe doesn't trigger beforeunload when closed

How can I have an iframe to trigger the beforeunload event when it's closed. I set in the iframe'd website a callback via window.onbeforeunload = function(){ alert('test') }, but it's not called when ...
0
votes
0answers
21 views

nullifying the effects of the confirm box buttons

Can any of you help me I need this fast? can you help me nullify the effects of the buttons of the confirm box? I've tried this but it doesnt work. <script language="javascript" ...
0
votes
0answers
141 views

focusing on a jquery-popunder window

I am working with jquery-popunder after inviting visitors to take a survey. if they agree, the survey is opened in a popunder. I want to add on onBeforeUnload listener to the site to bring focus to ...
0
votes
0answers
62 views

Force the users to logout properly

I'm developing an internal web application (asp.mvc + JS) that performs a key function for its users. Once they migrate away (navigate, close tab, close browser) the app stops. Ideally what I would ...
0
votes
0answers
115 views

Ajax call not working in onbeforeunload event

I have functionality in which I need to make a ajax call to update the database value before closing the browser using 'X' button of browser. I have used below code in the header of associated file: ...
0
votes
0answers
165 views

onbeforeunload - detecting type of action (only want navigation buttons, not window exit)

in my application I use onbeforeunload to call a function when a page is in its unloading state. Is there any way in that javascript function to determine which action exactly was hit to cause this? ...
0
votes
0answers
64 views

clicking back during ajax file upload

I have this 'beforeunload' function which is triggered during ajax uploading to warn users that leaving the page may terminate uploading prematurely. and it works fine if the user clicks a link or ...
0
votes
0answers
147 views

using jquery serialize/window.onbeforeunload to check for a dirty form and stop user from leaving is not working in browsers besides IE

I'm using the following code to warn users if they are leaving the form without saving. It works perfectly in IE but in Firefox, Chrome and Safari it gives me the warning every time regardless of ...
0
votes
0answers
157 views

Java script is not working in Chrome

The code below works fine on IE and FF but not on Google Chrome. Please can someone help me to find out the mistake?.Thanks In Advance. Flex Code: Public function init():void { ...
0
votes
0answers
58 views

Asychronous XHR Request in onbeforeunload on firefox18

i have an application that sends some user information every 5 seconds and when a user leaves the page. with some workarounds this has always worked (e.g. waiting a few milliseconds in chrome...). ...
0
votes
0answers
98 views

When onbeforeunload is too soon

I am curious to see what input everyone has on this subject; seems like it has potential to be a common issue, so it may help others out. Upon submitting any form button on a certain page, a ...
0
votes
0answers
297 views

onbeforeunload workaround for mobile safari?

I need the user to confirm that she/he really wants to leave and that their data is not saved. onbeforeunload works perfect for that situation but I just found out that its not supported on mobile ...
0
votes
0answers
56 views

In Drupal 7, how to use onbeforeunload to perform server operations instead of just user warning

I am using onBeforeUnload API (patched version for D7) to perform some server side action when user decides to leave the page. It works fine to provide a warning message to the user. But if disable ...
0
votes
0answers
48 views

Detect AJAX Internet Failure vs Navigating Away

If an AJAX request callback gives me request.status == 0 then I know it was not a server error, but instead some kind of connection error. In all likely hood it was on the client side. Thus I usually ...
0
votes
0answers
342 views

What actions can be performed onunload using Javascript / Exit Pop up implementation ? . How to close exit pop up

I have successfully implemented an onbeforeunload pop up with help from http://kbeezie.com/cross-browser-exit-pop/ . I would like to close the lightbox ( created using fancybox ) in this article when ...
0
votes
0answers
111 views

Code inside window.inbeforeunload only executes sometimes

I am trying to detect when a user leaves a page. I am using the following code: window.onbeforeunload = function (oEvent) { var ef = document.createElement("script"); ef.type = "text/javascript"; ...
0
votes
0answers
153 views

Detecting page change in ASP.NET web application

We are looking to detect in an ASP.NET application, if the user wishes to change page. If that is the case, we wish to prompt them to confirm this action. It is OK if there have been no changes on ...
0
votes
0answers
211 views

show confirmation dialog on browser window close

I need to show confirmation dialog to end user if there are active items in his cart and he closes browser window using (click, alt+f4 , alt+space+close etc) Had used beforeunload but it fires on ...
0
votes
0answers
178 views

Webkit browsers: why does googlecommerce.com's tag prevent iframe onload & break back button suppression?

There's a form of back button detection that currently works in every browser except for certain situations in chrome/safari. You prepare an iframe's onload function to null out window.onbeforeunload. ...
0
votes
0answers
155 views

Page refreshed or being closed on onunload event Jquery

i want to display a popup with an ad, now this ad should only be displayed when user has closed the parent window (window on which the site was open), i am using onunload and also tried ...
0
votes
0answers
40 views

Give user text to copy onbeforeunload

I have a page where people can build an itinerary of events. I do not require users to login to use this feature, and a unique URL is built for them as they put their itinerary together. There is a ...
0
votes
0answers
73 views

Can I make a logout request just before the window is being closed in Chrome?

I have window.onbeforeunload = function(evt){ if (typeof evt == 'undefined') evt = window.event; document.location = '/Logout.php'; } if(navigator.appName=="Opera" || ...
0
votes
0answers
65 views

Unloading on Ajax Refresh

Is there a way to get code that is running in a same domain iframe to trigger onunload or onbeforeunload when that iframe is refreshed or removed using ajax to change only part of the page? I've ...
0
votes
0answers
335 views

Function only executes properly when there is an alert in it

I have a function that runs when the window.onbeforeunload executes it function goodbye(e) { // alert("isSortingOrChangingStatus="+isSortingOrChangingStatus+", ...
-1
votes
0answers
68 views

Flash a pop up window containing a web page when the browser window or tab containing parent page is closed

I have a problem. I want to open a pop up window with a new web page in it when the browser tab containing the parent page is closed or the browser window containing the parent page is closed. I have ...

1 2