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
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
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 ...
0
votes
2answers
79 views

onbeforeunload while page loads

I'm just curious if things like this is possible >> While still loading a web page, is it possible to return an onbeforeunload like dialog when a user try to navigate to other page or close the ...
1
vote
3answers
220 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
1answer
48 views

Reload after upload files in html

I have an html form, which can be used to upload files. These files are deleted when the user navigates away into another section. Unfortunately, I'm not seeing what can be done if the user decides to ...
0
votes
1answer
584 views

Disabling window onbeforeunload function in a link

i have a site using window onbeforeunload function but popup on click is not working because of it. how can i integrate the code window.onbeforeunload="null"; in the popup code below <script ...
1
vote
2answers
4k views

window.onbeforeunload runs only when closing window not on refresh

I have this function window.onbeforeunload = function () { return "Are you sure?"; }; and I have a button that when the user presses it the window refreshes to ...
1
vote
2answers
236 views

Can I use “ window.onbeforeunload ” twice in my html document?

I am creating a HTML layout where user can fill the data and save that page in HTML and JSON formats by using "save" and "save as draft" resp. Can i use window.onbeforeunload twice in my ...
1
vote
2answers
1k views

IE9 onbeforeunload called twice when window.location changed in button event… minimal reproduction

I've been hammering and hammering at this and just can't get anywhere. I have a cancel button that does a "window.location = '404.htm';" when clicked. The onbeforeunload handler fires twice, but only ...
0
votes
2answers
1k views

Why does redirect happen before my jquery click event is fired for a html anchor element?

I'm trying to trigger the OnBeforePageUnload only when the user closes the tab or browser window. When the user navigates on my website, I have a custom mechanism that will trigger a warning dialog to ...
1
vote
1answer
366 views

can't get onbeforeunload working in chrome

I've looked at similar questions on this website, but I haven't seen why this doesn't work for me. I have the latest version of chrome installed. I can't seem to get the following code to work in ...
1
vote
1answer
148 views

Best way to warn user that he is quitting the page

I've seen a lot of question on this and the solution seems to be window.onbeforeunload But i've tried it, seems to work great to warn the user before the pages unload, but there is no way i've ...
1
vote
3answers
470 views

Detecting Href Is Clicked

I'm trying to detect if certain element is clicked on onbeforeunload. I can't get it to work. Below is examples of the Javascript code and HTML code on the project (Please note that I have no control ...
0
votes
1answer
224 views

Manage when someone tries to close the browser window/tab

In my onbeforeunload event, it asked the user whether they want to leave the page or stay on it. When they click "stay on page", I want it to then redirect them to another webpage in the same window. ...
-1
votes
1answer
1k views

OnBeforeUnload to redirect user

In my OnBeforeUnload event, it asked the user whether they want to leave the page or stay on it. When they click "stay on page", I want it to then redirect them to another webpage in the same window. ...
0
votes
3answers
340 views

Problems with onbeforeunload

I have problem with onbeforeunload and preventing user from exit the page: When user want to exits i want to redirect him on other page, without any warning or pop-up I try to popUp that page, but ...
0
votes
1answer
193 views

vb.net - how to automatically close javascript prompt boxes

How would I go about having my application automatically close an onbeforeunload prompt box that warns you before leaving the page? Example: http://sharecash.org/download.php?file=234324234324324324 ...
2
votes
2answers
2k views

Javascript, controlling an onbeforeunload tag

I'm trying to set up a onbeforeunload tag to stop a user from leaving specific pages if and only if they have unsaved content, and only on specific pages (we're using a single master page). I quickly ...
38
votes
12answers
35k views

How to show the “Are you sure you want to navigate away from this page?” when changes committed?

Here in stackoverflow, if you started to make changes then you attempt to navigate away from the page, a javascript confirm button shows up and asks: "Are you sure you want to navigate away from this ...
11
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 ...