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...). ...
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
398 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
308 views

onbeforeunload loops and hangs Firefox

I'm using this script to prevent reload and back button navigation of a page to inform the user of if he/she leaves, changes done will be lost. In Firefox, the problem only seem to occure when ...
0
votes
2answers
771 views

Sending a request back to server in onbeforeunload event

When a user edits a record in my application I track that they have it 'locked' to prevent another user from editing it until the first user closed the window (or saves). I'm trying to send the ...
1
vote
1answer
523 views

Onbeforeunload not firing in IE when user closes window

I monitor each field in my form for changes by binding to the 'change' event for all input fields, and set a flag if anything gets modified. I then bind to window.onbeforeunload and check that flag, ...
0
votes
2answers
4k views

window.onbeforeunload support in Firefox

I am using window.onbeforeunload in my javascript. This works perfectly in IE but is not triggered in Firefox. I checked on different links in stackoverflow.... In it I read that ...
0
votes
1answer
1k views

Issue with onbeforeunload event handling in firefox

The following piece of code alerts the mouse position in IE , but in Firefox and other browsers, it alerts "undefined". <body onbeforeunload="test(event);"> function test(e){ if (!e) var ...
3
votes
8answers
3k views

window.beforeunload called twice in Firefox - how to get around this?

I'm creating a popup window that has a beforeunload handler installed. When the "Close" file menu item is used to close the popup, the beforeunload handler is called twice, resulting in two "Are you ...