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.
0
votes
0answers
10 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 ...
-3
votes
0answers
28 views
How to capture close window event [closed]
how can i capture the close window event?
I want to have a pop up DIV when the client close the browser.
The div has a picture for advertisement.
Thank you for answering
0
votes
1answer
21 views
Use JQuery or onbeforeunload for IE and FF
I'm working in a Flex4 application, using javascript, in the "index.template.html" document. I'm having an issue being able to use onbeforeunload with Firefox. The application works perfectly in IE, ...
0
votes
0answers
10 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; ...
2
votes
0answers
32 views
Onunload, onbeforeunload - guidance requested
I have a web server that generates questions for students of a particular subject. The web server needs to keep track of how much time each student has spent on a particular set of questions.
The web ...
0
votes
0answers
13 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
1answer
34 views
Change default choice for onbeforeunload event
Is it possible to change the default option (if the user just presses enter) for the window.onbeforeunload event? The popup button defaults to "leave this page" (at-least in Chrome), and I was ...
0
votes
2answers
22 views
Opening another window in Javascript when user presses X on browser
I understand this question has been asked and either answered or rejected before, but i promise i have a reasonably legit reason for asking. I am doing a Uni course and one of the requirements for the ...
1
vote
1answer
34 views
How to logout during onbeforeunload/onunload using Javascript
<script type="text/javascript">
window.onbeforeunload=before;
window.onunload=after;
function before(evt)
{
var message="If you continue, your session will be logged out!";
if(typeof ...
0
votes
2answers
38 views
Why is jquery beforeunload showing a message even when returning null in Internet Explorer
This code will cause Internet Explorer to show the 'Are you sure you want to leave?' message every time, even when dirtyMessage is null. What am I doing wrong?
$(window).bind('beforeunload', ...
0
votes
1answer
67 views
If user refuses to leave a page in the onbeforeunload event, is there an event fired afterwards?
The subject is pretty much says it all. I would like to display another div if the user decides to stay on the page. Is there an event I can listen for if they refuse page navigation?
I found this ...
0
votes
1answer
69 views
jQuery bind beforeunload - not working with IE 9
I have a piece of code i want fired when the page closes (basically, send a 'disconnected' message to the server. The execution should be fast enough for me not to have to cancel and restart the ...
-1
votes
0answers
64 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 ...
0
votes
1answer
89 views
Is there any way to make onbeforeunload work in Opera?
I know, that Opera doesnt support JS onbeforeunload message and will not support it.
But is there any way to make it work somehow?
Or maybe some jQuery plugins can make it work and let script know if ...
0
votes
1answer
104 views
Multiple beforeunload handlers in jQuery
I am writing Javascript for a plugin that will be used on clients' sites, and need to use a beforeunload handler to store some information to the user's cookies or localstorage for tracking purposes.
...
0
votes
1answer
51 views
I have two buttons on a page, save and complete. I'm looking for two different alerts for two input fields
If the value of the input box for charge_amt is not entered I'm using an onbeforeunload jquery event which notifys the user they didn't enter an amount. After they enter the amount they are allowed to ...
0
votes
1answer
97 views
Is it possible to capture the user's answer when using onbeforeunload confirmation?
I need to warn users that they will lose information when leaving a page. This is easily done using the onbeforeunload event. My problem is that I want to take some action if the user decides to ...
3
votes
2answers
190 views
Run Javascript code only if 'beforeunload' function returns true
I'm using JQuery to capture the unload event when a user navigates away from a page. This works just fine, but I have data that needs to be saved only in the event that the user really wants to leave.
...
0
votes
1answer
47 views
Direct User to URL when Back Button is Clicked
I am using a mobile webview in my android app and am hoping to make it so that when the user clicks the back button, they are automatically taken back to the home screen.
I understand that I can use ...
0
votes
1answer
77 views
Javascript detect closing popup loaded with another domain
I am opening a popup window and attaching an onbeforeunload event to it like this:
win = window.open("http://www.google.com", "", "width=300px,height=300px");
win.onbeforeunload = function() {
...
0
votes
0answers
83 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
20 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" ...
1
vote
0answers
69 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 = ...
0
votes
1answer
257 views
how to use window.onbeforeunload?
I have a small webpage. i need to activate my ajax function when browser is closed
I using below JavaScript for that in the <head>
<script language="JavaScript" type="text/javascript">
...
1
vote
1answer
40 views
onbeforeunload to trigger shopping cart abandonment
Is the 'onbeforeunload' event 100% consistent, effective and worthy of using as a trigger for a shopping cart abandonment campaign?
1
vote
1answer
29 views
Chain .on() with .not() to remove unneeded elements from the object
I have a web form, that I bind the beforeunload event to the window to detect any changes to the form except the inputs that I do not need to include. So for example, an input that I don't need to ...
2
votes
1answer
102 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 ...
1
vote
1answer
130 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
0answers
30 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 ...
0
votes
1answer
50 views
onbeforeunload works also with refreshing
I did this question few days ago (Java session deleted after page refresh) and I didn't have an answer. Maybe because the problem was in the onbeforeunload event.
with:
<body ...
0
votes
0answers
135 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
2answers
484 views
JavaScript action onbeforeunload executing before leaving page
Ive written some code Im trying to use to tack a visitors ip, and how long they are on site for.
Code:
<script>
var startTime = new Date();
window.onbeforeunload = $(function() {
/* var ip ...
3
votes
1answer
536 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 ...
0
votes
0answers
61 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
114 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:
...
2
votes
1answer
103 views
How-To: Handel standard Closing dialog of onbeforeunload in Firefox with Selenium
),
I have to test a web-application with Selenium (actually I'm using it in Java).
there is an confirmation Dialog on leaving the page and I need to handle it in Selenium, the 1. confirmation box i ...
0
votes
1answer
237 views
Javascript How To : hide the browser popup for onBeforeUnload and display custom popup
I am building a MMO which has a tutorial in it.
When the user tries to navigate away from the tutorial or close the tab/browser while on the tutorial, I need to show a custom popup which has a ...
0
votes
0answers
162 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
1answer
175 views
jQuey - unload vs java script - onbeforeunload
working on a way go recognize when user exits my website.
ive read some threads on the site aboout methods do to this with ajax calls simulating pings
ive found documantation for unload event that ...
1
vote
0answers
67 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 ...
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
2answers
153 views
Query for window.onbeforeunload [duplicate]
window.onbeforeunload( function() {
return "Are you sure?" ;
});
I want to perform an an AJAX call before the page being unloaded, Is there any other way to achieve this, ...
0
votes
2answers
147 views
Jquery hide() onclick before the page unloads
Hi i've been racking my brain for days. I'm creating a menu that drops down using the hide function in jquery. I want my menu bar to hide when my li tag is selected then the page navigates away to the ...
0
votes
2answers
189 views
Send AJAX to server beforeunload
So supposedly starting at Firefox > 4, binding the window jQuery object to beforeunload doesn't work anymore.
What'd I'd like to do is submit an AJAX post to delete my server's memcache data.
When I ...
1
vote
1answer
90 views
CoffeeScript onbeforeunload responding with function not string
I'm trying to prompt the use if they have any unsaved emails before they reload the current page. The unsaved emails are stored in a hash called unsaved. I wrote the the scripting in CoffeeScript.
...
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
1answer
81 views
onbeforeunload - Cannot make changes to page UI
In my onbeforeunload function we are automatically disconnecting an ActiveX control from a server.
This process takes about 3 or 4 seconds (we have no control over that) so I want to display a message ...
0
votes
1answer
517 views
window.onbeforeunload fires in IE for partial postback events
I want to warn users when the refresh or press back button of the browser if they have entered some thing in text boxes. So I have used window.onbeforeunload function to do it.
window.onbeforeunload ...
0
votes
1answer
702 views
“Are you sure you want to leave this page?” functions for cancel and OK
i'm trying to do something similar to some websites where you leave and it'll display a popup saying "Are you sure you want to leave this page" and with two options saying "Cancel" and "OK".
How ...
1
vote
1answer
135 views
Does JQuery $.post() not work with document.onbeforeunload event?
I am trying to use $.post to send form data to a server side script to be saved if the user tries to leave the page without submitting the form. I am using the same function attached to a save button ...


