-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
0answers
84 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
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 ...
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 ...
2
votes
1answer
456 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
1answer
161 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. ...
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
188 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
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 ...
1
vote
1answer
172 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 ...
1
vote
1answer
288 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
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 ...
1
vote
2answers
152 views

onbefore unload not working in firefox

<script type="text/javascript"> var sessionID = getQuerystring('SessionID'); var cookieSessionID = getCookie('session'); var validNavigation = false; function ...
2
votes
2answers
543 views

How to access JavaScript href event that triggered beforeunload

I would like to access the event that caused a beforeunload event. Specifically, if I click on a link to another page, I would like to know what the link was in the beforeunload event handler. In ...
0
votes
2answers
490 views

addEventListener Problems in IE [duplicate]

Possible Duplicate: MSIE and addEventListener Problem in Javascript? I am trying to listen for a close event on a child popup window that is called by its parent page. The idea is for a ...
0
votes
1answer
115 views

In window.beforeunload, how do you capture the url they are trying to navigate to?

I'm trying to capture some data on window.beforeunload. window.onbeforeunload = function () { var newLocation = location.href; promise = doAjaxStuff promise.done(function () ...
0
votes
2answers
673 views

How to show a modal dialog before beforeunload shows its own?

I do understand that it's not possible to replace the beforeunload dialog with a custom one, and that if we need to set a custom message to the user, we'll have to return a string in our beforeunload ...
0
votes
2answers
506 views

check if changes saved before unload

I have the following javaScript EDIT: included assignments for cahngesSaved var changesSaved = true; $(document).ready(function () { $(".applyChanges").click(function (e) { ...
0
votes
2answers
1k views

'onbeforeunload' Fires Twice

I want to send an ajax request when a user leaves a page or closes the window. Here is my code inside : <script type="text/javascript"> function sendajax(){ $.ajax({ ...
3
votes
2answers
2k views

Why jQuery sometimes overwrites window.onbeforeunload?

I am having strange problem with jQuery (1.6.x). I have this simple call on my page: window.onbeforeunload = function() { return 'Are you sure ?'; }; But it doesn't work, because as I've found out, ...
6
votes
1answer
3k views

How to collect return value of onbeforeunload

I am displaying a warning message if user try to close window without saving the form. window.onbeforeunload = askConfirm; function askConfirm() { // needToConfirm is set to true ...
0
votes
1answer
182 views

javascript event never triggering

I am working on a signup for the mailing list and an trying to make the page and js file not be cached by the browser. Thus, i use a fake querystring. I am trying to get the page to make a new ...
0
votes
0answers
335 views

Function only executes properly when there is an alert in it

I have a function that runs when the window.onbeforeunload executes it function goodbye(e) { // alert("isSortingOrChangingStatus="+isSortingOrChangingStatus+", ...
6
votes
4answers
5k views

Way to know if user clicked Cancel on a Javascript onbeforeunload Dialog?

I am popping up a dialog box when someone tries to navigate away from a particular page without having saved their work. I use Javascript's onbeforeunload event, works great. Now I want to run some ...
0
votes
1answer
258 views

How to figure out if the window is closing in the callback of jQuerys unload(); method

Is it possible to figure out just wich type of event triggered $(window).unload();? To be a bit more specific, I'm only interested in the event when a user has closed the window (a popup), not when ...
5
votes
2answers
444 views

Performing GET request before leaving page - Javascript

if a GET request is made as follows $(window).bind('beforeunload', function() { // GET request }); and the page is abandoned before the GET request is completed, will the destination server ...
5
votes
3answers
2k views

Javascript onbeforeunload Issue

Alright, I have an issue with the following code. What happens is when a user closes their browser, it should prompt them to either click OK or click CANCEL to leave the page. Clicking OK would ...
4
votes
1answer
4k views

Multiple onbeforeunload() and onunload() events

I have a strange issue from a client in that our code, which they include uses onbeforeunload() to trigger a dialog, but they are also including another companies code which also binds this event ...
4
votes
3answers
4k views

Is there anyway to prevent onbeforeunload event from triggering when using internet explorer

I have a function that is suppose to trigger when user closes their browser and I have put the code in the "window.onbeforeunload" function. The thing is every time if I reloads the page in Internet ...
1
vote
2answers
2k views

window.onbeforeunload not firing in child window

I want to bind a function to the beforeunload event of a child window in Javascript. I have the following code: newWind = window.open(settings.url, "Dialog", "width=" + settings.width + ",height=" + ...