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

0
votes
2answers
192 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 ...
3
votes
1answer
130 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
319 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 ...
1
vote
1answer
241 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
275 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
45 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
2answers
210 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
218 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
329 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
814 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
47 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
185 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
305 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
219 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"; ...
2
votes
1answer
454 views

Handle JS window onBeforeUnload Event in CRM 2011 Outlook-Client

I've got a problem to handle the window.onbeforeunload event in a JS-Application in a HTML-web resource for Microsoft Dynamics CRM 2011. By using the "normal" IE the following code works fine: ...
0
votes
3answers
1k views

javascript window.onbeforeunload not working correctly

UPDATE: there is something going on with the page I am trying to have the onbeforeunload work on. I set it up in the layout and it pops up for every page besides that one... So there has to be some ...
0
votes
1answer
300 views

Why the OnBeforeUnload doesn't intercept the back button in my GWT app?

I have a hook on the beforeUnload event. If i try to click on a link, reload or close the tab or the navigator, the app ask for confirmation before leaving. That's the desired behavior. But if click ...
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 ...
-1
votes
1answer
353 views

How to set onbeforeunload status of window.opener from the child window?

I created the following code that works smoothly in Firefox and Chrome. In IE8 the window.opener.onbeforeunload = null line does not fire. Can anybody give me advise on how to get a similar result for ...
0
votes
4answers
633 views

jquery beforeunload does not display message

The jsfiddle for this is at http://jsfiddle.net/whDm6/18/ If I uncomment the Alert in the following code, change a form value, and refresh the page, it displays an alert. So I know the code is ...
0
votes
0answers
151 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
1answer
696 views

cant get custom message alert in page leave “onbeforeunload” event

I put following script to prevent leave page meanwhile processing steps <script language="JavaScript"> window.onbeforeunload = confirmExit; function confirmExit() { JQObj.ajax({ type: ...
0
votes
1answer
160 views

How to stop firing onbeforeunload when a time from RadTimePicker is selected

Could please anyone tell me how I can stop firing onbeforeunload when I select time from RadTimePicker. In my scenario I have a RadTimePicker and on time selection I am setting a value in RadComboBox. ...
0
votes
0answers
175 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. ...
1
vote
1answer
1k views

How to stop firing onbeforeunload function on RadGrid Postbacks in ASP.NET

Scenario: I have onbeforeunload function on .aspx page which I am using to display a message before navigating away from current page (ASP.NET Application). This page is quite complex where post backs ...
3
votes
3answers
186 views

Prevent onbeforeunload function from pausing javascript timer

In my webpage, I have a countdown timer using javascript's setTimeout(). function Tick() { if (RemainingSeconds <= 0) { alert("Time is up."); return; } ...
0
votes
0answers
154 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
36 views

Removing the prompt box onbeforeunload [duplicate]

Possible Duplicate: How to remove prompt on unload event using javascript I am working on a javascript that runs onbeforeunload and onunload now the script generally runs fine, however on ...
0
votes
1answer
390 views

preventing firefox reload confirmation

I'm displaying certain records in an editable table. The user when attempts to reload the table while editing a record a pop up comes warning the record about the unsaved data. function ...
1
vote
1answer
258 views

Getting onBeforeUnload to work with a setTimeout

I am trying to get onbeforeunload to work with a set timer of sorts but I can't seem to get it to fire up when the return is in place. I am hoping it would work with a timer but for some reason the ...
1
vote
1answer
395 views

onbeforeunload and onunload getting one to work after the other

I am having some trouble with the on before unload and the unload method. I thought i set the code right in terms of the onload method only firing up after the confirm method for onbeforeunload was ...
0
votes
2answers
699 views

Getting window.confirm to work

I am trying to get window.confirm to work with a script I am working with however it doesn't seem to wanna work . What happens is if the person presses cancel it still runs the code, And sadly now the ...
1
vote
1answer
170 views

a confirmation popup in JS

Hello I am looking into making a confirmation menu in JavaScript to where it will run a set of code depending if you select yes or no. Now I want it to happen on the window.onbeforeunload event but ...
0
votes
1answer
652 views

How to launch a popup window when tab closes, or when new address typed in?

I'm trying to launch a popup from certain pages. I want users to see the popup only when: a) they close the browser tab b) they hit the browser's Back button c) they go to a page other than the next ...
1
vote
1answer
282 views

Trying to get chrome to show a about to leave page using onbeforeunload

I am working on a javascript that is suppose to do a click feature on an element as well as showing a pop-up asking if you want to really leave the site (close the tab). Now The code works fine on IE ...
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 ...
2
votes
1answer
297 views

JavaScript prevent function from firing when window is closed

I have a text field, ID="Text1", which fires a function, "validateField()" when the Text1 field loses focus (it also checks if the enter key was depressed "onkeydown") example: <input type=text ...
1
vote
2answers
551 views

javascript's unload and beforeunload alternative

I need to monitor when the user moves away from a page (to a different site not the same site) or closes the window/tab. I can achieve that with $(window).bind('unload', function() {}); but onload is ...
0
votes
2answers
115 views

Javascript, determine if an href click is a call to javascript function or not.

I'm tying in to the onbeforeunload event in javascript to disable control of the page during the unload process. We have a bunch of users who were editing data during this time and it was wreaking ...
0
votes
1answer
167 views

onbeforeunload not working when another script added

I have this little piece of code to check if there were any changes in form fields before leaving page $(document).ready(function(){ var form = $('#submit-form'), original = ...
0
votes
1answer
280 views

jquery onbefore unload trigger

I'm using a script to fade out the page content when user is actually leaving the page. For that I tried using the beforeunload event. It works fine when I navigate through my site, however I also ...
0
votes
1answer
171 views

Multiple onbeforeunload events

I'm facing a weird problem in my web application. There's a listener for onBeforeUnload event where I'm prompting the user to confirm whether he really want to leave the page. It's working fine ...
1
vote
2answers
151 views

onbefore unload not working in firefox

<script type="text/javascript"> var sessionID = getQuerystring('SessionID'); var cookieSessionID = getCookie('session'); var validNavigation = false; function ...
-1
votes
1answer
131 views

onbeforeunload not triggered properly

I can't figure out why the script isn't working with the form. Why doesn't the $("form").submit(function() call the form with id form? This script isn't even performing the window.onbeforeunload so I ...
2
votes
1answer
267 views

Remove onbeforeunload from JS execution in main window from frame

I tried to disable onbeforeunload event from frame script with this command: window.parent.onbeforeunload = null; but received this dialog: I tried to debug and onbeforeunload becomes null. But ...
0
votes
3answers
388 views

onbeforeunload event not firing in my code, but other examples work?

As usual, I want to alert users to unsaved changes when leaving a page. I have this test page: <html> <head> <title>Testing</title> <script language="JavaScript1.1" ...
1
vote
1answer
366 views

How to set onbeforeunload of a frame window inside the webpage loaded in WebBrowser?

Some webpages that are loaded inside an iFrame of a webpage that is loaded in WebBrowser component have a confirmation window pop-up when closing the webpage. This confirmation windows is preventing ...

1 2 3 4 5 7