Tagged Questions
The onunload tag has no wiki summary.
10
votes
2answers
2k views
DOM Window unload event, is it reliable?
Can I rely on the window unload event to be triggered when a user closes a tab/window/browser?
Edit:
Found a list of what triggers the unload event in IE. ...
4
votes
4answers
636 views
JS onunload event won't always work
I want to count how much time visitors spend on a certain page and store it in my MySQL DB.
I thought of just starting a timer on window.onload like this:
window.onload= startCount;
window.onunload= ...
4
votes
4answers
5k views
Best way to detect browser closing/navigation to other page and do logout
I am writing an application in GWT and I need to detect when a user navigates away from my application or when he closes the browser window (onUnload event) and do a logout (session invalidation and ...
3
votes
2answers
91 views
Is there a recommended approach to handle saving data in response to within-site navigation without onunload event?
Preamble to scope my question:
I have a web app (or site, this is an internal LAN site) that uses jQuery and AJAX extensively to dynamically load the content section of the UI in the browser. A user ...
3
votes
1answer
2k views
Differences between window.onload/onunload and body.onload/onunload
I have read the answers for the question window.onload vs <body onload=""/>. In that Q&A, many claim that window.onload and body.onload are identical. This is not what I experience.
...
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
3answers
49 views
Implement locking & unlocking a document while editing
Here's the situation:
I have a web-based ticket application, multiple users.
One problem that might occur (and does happen in the old version I'm replacing) is that user1 opens a ticket, edits it, ...
2
votes
2answers
239 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
2answers
312 views
Problem with jquery ajax and google chrome
I'm using jQuery to show a confirmation message for the user when leaving the page as follows:
var changes = false;
window.onunload =function() {
if (changes) {
...
2
votes
4answers
2k views
cross-browser Onunload and Onbeforeunload ? (particularly opera 11)
I have a form and I must notice user with alert() on exiting page while there are data in the form that had not been send.
I've read that opera has a lot of problems with this. Opera 11 that is, ...
2
votes
4answers
203 views
Is there a way using ASP.NET to always run some server side code when a user leaves a page?
I was wondering if there is any way to always run some server side code when a user leaves a page in ASP.NET. The page Unload event is no good because that doesn't get called if someone clicks on a ...
2
votes
2answers
534 views
How to block pop-up coming from iframe?
I'm embedding page that has an exit pop-up. When you close the page, it automatically launches a pop-up window.
How to disable pop-ups coming from the iframe on exit?
2
votes
1answer
470 views
Opening an iframe source in a new tab if it tries to redirect the user
It's a known fact that a lot of websites use javascript codes to prevent from browsing them using iframes. I would like then my iframe to behave like this: if the site doesn't have such a code and ...
2
votes
1answer
482 views
Attatching setTimeout() to window.opener from window in unload callback
I'm trying to do this:
$(function() {
var parent = window.opener;
$(window).bind('unload', function() {
parent.setTimeout(function() {
parent.console.log('Fired!');
...
2
votes
1answer
675 views
onunload message needed but not when they click internal links
okay i have a question...
i need an message script that only will come up when people are really leaving
the current webpage so not the current website...
so actualli when people are leaving the ...
2
votes
3answers
5k views
How can i get the destination url in javascript onbeforeunload event?
I've searched for hours, but I couldn't find a solution for this.
window.onbeforeunload = warn;
This doesn't work:
function warn (e)
{
var destination = e.href;
alert(destination );
}
...
2
votes
2answers
2k views
Opera: Detecting back, forward, refresh and close events
I'm currently working on a jQuery plugin that tracks a visitors mouse behavior. Movements, clicks, scrolling and resizing are all recorded and sent, via Ajax, to a location where this data is parsed ...
1
vote
1answer
58 views
How to trigger onunload event when removing iframe ?
How can the iframe's unload event be triggered when removing it?
Using the code below, when removeChild(iframe) is called, the onunload event is not triggered.
<!-- parent.html -->
...
1
vote
1answer
579 views
window.onunload is not working properly in Chrome browser. Can any one help me?
I have written this code
function winUnload() {
alert("Unload Window");
MyMethod();
}
window.onunload = function() { winUnload(); }
This code is working fine in IE and Firefox. But ...
1
vote
1answer
260 views
How to do ajax synchronous call from Chrome's window.onunload?
I'm trying to do a jquery .ajax synchronous call on window.onunload. FF and IE works but not on Chrome. I had done some testing and Chrome seems to terminate the window and not wait for the response.
...
1
vote
2answers
617 views
catch close browser with onunload function using master page in ASP.NET
I have a website with master page. I want to catch a user trying to close the browser/tab. When I try using onunload in the body tag, it fires not only when I try closing the browser, but also when I ...
1
vote
2answers
362 views
“onbeforeunload” not firing on unload
I stuck this in a .js file...
window.onbeforeunload = alert('onbeforeunload');
But it fires when the page is loaded, not when it is unloaded.
Does anyone know why?
1
vote
0answers
273 views
Problem with opener.top.location.href on second post-back
I have a page with several Iframes, I open a popup with a form in it from within the iframe and the popup needs to refresh the opener.parent when the form in it is submitted.
I have tried putting ...
1
vote
1answer
165 views
JavaScript: How to abort unload and making a JavaScript call?
I'd like to make at evere onunload event a jQuery call which toggles a few divs in one second. And then I'd like to do the unload.
How can I time out the unload for one second and make a jQuery call ...
1
vote
1answer
608 views
Capturing result of window.onbeforeunload confirmation dialog
Is there a way to capture to result of the window.onbeforeunload confirmation dialog like the one below from stackoverflow (this happens when leaving the 'Ask Question' page without posting the ...
1
vote
1answer
328 views
Rails 3 form helper to prevent user from navigating away and losing changes?
Is there a Rails helper or a Rails way of preventing the user from leaving the current page if they're typed something into the form on the current page?
I'm trying to prevent people from losing data ...
1
vote
1answer
312 views
Why js onunload is invoked when popup page opens?
According to the documentation (I'm only using Firefox) :
https://developer.mozilla.org/en/DOM/window.onunload
The unload event is raised when the
document is unloaded.
But my code below ...
1
vote
2answers
465 views
Problem submitting form on window.unload
I am having a problem submitting form on window unload if form information has been updated (album.updated = true):
window.onunload = function(evnt) {
if (album.updated) {
var save = ...
1
vote
2answers
415 views
Confirm Browser Exit/ On Browser Exit Techniques
I've been looking around for a while and haven't quite found what I've been looking for.
My web page stores reports, and the user has the ability to save these reports.
I'm looking for a method, ...
1
vote
1answer
596 views
IFrame on unload refresh parent page
I have an iframe in a page. When the iframe is closed I would like to refresh the parent page. Checking out the iframe element w3 page I see there are no standard events.
I considered a polling ...
1
vote
3answers
446 views
How to know when popup is closed in javascript
This code will open go.com in popup window:
<a href="javascript:void(0)" onClick="javascript:window.open('http://go.com','','status=yes,scrollbars=yes,toolbar=no,menubar=no,location=no ...
1
vote
2answers
850 views
Get url for the page being opened next in window.onunload event
Is there a way get the location for page being opened next in the window.onunload event.
Best Regards,
Keshav
1
vote
1answer
773 views
Cross browser window close event [closed]
Possible Duplicate:
Close /Kills the seesion when close the browser or tab
Is there a solution for cross browser event. I need to check if user closes their window and to throw an ajax ...
1
vote
2answers
622 views
How can I get reason of page unloading in javascript's onunload event, in IE?
There may be different reasons of page unloading:
1 User closes the current window.
2 User navigates to another location.
3 Clicks the Back, Forward, Refresh, or Home button.
4 User submits a ...
1
vote
1answer
741 views
JavaScript onunload only called if document fully loaded?
I haven't seen any mention of this is David Flanagan's "JavaScript - the Definitive Guide" book (I've asked this question on O'Reilly Answers too), or anywhere else for that matter, but I am finding ...
1
vote
4answers
569 views
Strategies for preserving form data ( on tab/browser close )
I have an issue with a task management application where occasionally users close their browsers/tabs and the information which they type goes away because they accidentally close a browser/tab, ...
1
vote
3answers
2k views
Javascript: Check if the user is navigating away with a form submit or a simple link click
I need to do remind the users something when they are leaving the page, and that can be handled with the window.onUnload event.
But I also need to check if the user is navigating away by submitting ...
0
votes
3answers
77 views
know when a popup is closed
I have a popup made with
var popup = window.open(URL, ...)
the content of the popup is not in my control.
I want to know when the popup is closed. I though
$(popup).unload()
could help me, but ...
0
votes
0answers
27 views
Web page hangs up on unload
I have a DOM-heavy webpage using various third-party GUI elements created using Yahoo User Interface (YUI) and DHTMLX. When the page is refreshed, or when tried to navigate to a different page, I find ...
0
votes
0answers
16 views
differentiating between the closing of a window using window.close and other means (like clicking on cross)
I wish to find out whether the window was closed using window.close() or by manually (like clicking on the cross or refreshing, or Alt + F4). For that, I can check whether the unload event is called, ...
0
votes
0answers
85 views
Javascript onunload event not executing quickly enough
I'm wondering if I could be having a browser speed issue that is affecting the efficient execution of a simple Javascript function.
I'm using the onunload event handler to call a function that sends ...
0
votes
2answers
52 views
Set A Javascript Variable so it can be checked by an onunload function
I have a page that shows incoming stock parts so serial numbers can be entered. I have a JQuery Ajax function that updates the database and hides the line id a serial no is input. No problems here.
I ...
0
votes
1answer
270 views
onunload Ajax function not working in Chrome
I am developing an app that needs to store updated data in a database when the user leaves teh page. To do this I have bound a Ajax funtion to the "onunload" event of the page. This works in every ...
0
votes
2answers
180 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 () {
...
0
votes
1answer
260 views
Refresh div after closing popup with onunload
I'm currently using the following code which opens a popup window, and refreshes the parent window when the popup is closed.
Parent / Open Popup Link Code
<script type="text/javascript">
...
0
votes
1answer
144 views
Javascript onunload
I have most of this script written but I know I am missing one key pice.
I need to call function (see below)...
function InternalLink() {
Page_ShowPopOnExit = false;
}
...in an if/else statement ...
0
votes
0answers
582 views
location.href does not work in chrome when called through the body/window unload event
Javascript - document.location or window.location or window.location.href or location.href does not work in Google Chrome 6 and 7(i didnt test lowers versions) when called from the window/body unload ...
0
votes
1answer
457 views
Is the onbeforeunload event not supported on iPhone?
So, I've got a handy little bit of functionality in place in a jQuery Mobile app that lets the user know if he/she is navigating away from the page, as this will trigger a log off. In simplified form:
...
0
votes
1answer
93 views
Javascript onunload occours after new page is loaded
In my website I try to limit a certain page to 1 session per user only, to do so I used cookies(can't use Session variable) and the "onunload" event of the body element in the masterpage- there I ...
0
votes
1answer
484 views
Call onunload function from iframe
I am working on a multiplayer chess game as a facebook app.
If one player leaves the game by closing the browser the other player should get a notification. So if one player closes the Brwoser, a ...