Tagged Questions
0
votes
1answer
14 views
How to temporally deactivate onbeforeunload-message in combination with content-disposition: attachment?
I have one page insert.php where the user can make inputs into a form.
I use javascript to inform the user about possible loss of inserted data when the page is closed.
<script ...
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.
...
-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
28 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, ...
2
votes
2answers
88 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
1answer
35 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
23 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
38 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
39 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
69 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 ...
-1
votes
0answers
67 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
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
194 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
79 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() {
...
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 = ...
0
votes
1answer
267 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">
...
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 ...
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 ...
0
votes
1answer
51 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
2answers
502 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 ...
0
votes
1answer
245 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
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
1answer
177 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
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 ...
0
votes
2answers
194 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
92 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
1answer
84 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
533 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 ...
1
vote
1answer
137 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 ...
1
vote
2answers
164 views
submit during beforeunload, maybe who knows radically another method solution
Reviewed many similar questions on stackoverflow.com (also on other resources), but found no answers. So I simplified and generalized questions. It seems like the obvious solution:
...
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...).
...
1
vote
1answer
180 views
javascript detect if user left the site or just refreshed/clicked link
I am using a nodejs server to display online users, but it activates the disconnected function even when the user clicks a link or refreshes the page, I am trying to bypass this, by sending a message ...
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
1answer
22 views
Keep/submit language config independently in page/request?
I am working on a web project that need to switch between different language and load different data. Pages in different window need to remember its language config and do not affect other page.
I ...
0
votes
2answers
195 views
pause a javascript before page refresh
Im just a newbie in Javascript but I have some serious problem which I searched for many hours on different sources, so I decided to post this question.
How do you stall/pause a javascript before an ...
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 ...
1
vote
1answer
250 views
Display a warning with 'onbeforeunload' when leaving a page, except if 'Submit' is clicked
I wish to display a warning if a user attepmts to leave a page that contains unsaved settings, but obviously not if they are attempting to save those settings.
I guess my understanding is wrong, as I ...
0
votes
0answers
295 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
2answers
214 views
Return confirm in JavaScript
I have problem with return confirm in Chrome. In Firefox it is ok.
window.onbeforeunload = function() {
var result = confirm('Really?');
if(result) {
console.log('Do something');
...
1
vote
3answers
222 views
Javascript code not running onbeforeunload
I have 3 variables to track timespent in the site
$_SESSION['checkin']; //logged when user first enters the site
$_SESSION['loggedAt']; //logged when the user leaves the site
...
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 ...
2
votes
1answer
851 views
Using onbeforeunload:
<script>window.onbeforeunload = function() { return "Sure?"; }</script>
I don't want it to ask if they select the "add comment" button... it's basically a reminder for if they begin to ...
0
votes
1answer
190 views
how to call a logout code after runs onbeforeunload
have something like this in my main page:
<script language="javascript">
window.onbeforeunload = function(evt) {
var message = 'Are you sure you want to leave?';
if (typeof ...
0
votes
2answers
307 views
javascript to display “Are you sure you want to navigate from this page” in a consistent manner
I have a requirement to display a warning message ("Are you sure you want to navigate from this page" ) when a user tries navigates off from a page.
I got this working using the: window.beforeunload ...
0
votes
1answer
226 views
how to send a checkbox using ajax without clicking any submit button when div unloads
I'm trying to set a done button on my fancybox, when the user checks the checkbox it will be mark as done, the checkbox value will be submitted after the div on the fancybox has unload, and there is ...
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"; ...


