11
votes
4answers
7k views
How can I override the OnBeforeUnload dialog and replace it with my own?
I need to warn users about unsaved changes before they leave a page (a pretty common problem).
window.onbeforeunload=handler
This works but it raises a default dialog with an i …
0
votes
0answers
8 views
How to avoid onbeforeunload preventing Watir test from exiting
I have a webpage that uses onbeforeunload to prompt the user for confirmation whenever they try and navigate away from the page. This confirmation even fires when the browser windo …
0
votes
0answers
8 views
How to click on onbeforeunload prompt in Watir test?
I have a webpage that has an onbeforeunload script that prompts the user when they take an action that would navigate away from the current page.
How do I interact with this popup …
0
votes
1answer
14 views
Prevent onbeforeunload from being called when clicking on mailto link
Is there anyway to prevent onbeforeunload from being called when clicking on mailto link in chrome.
In FF, Safari, IE it is working fine.
<html>
<head>
<script typ …
0
votes
3answers
38 views
Can I prevent onbeforeload from being called when clicking on an anchor tag?
In head:
<head>
<script type="text/javascript">
$(document).ready(function() {
$("#anchor_id").click(clickHandler);
window.onbefore …
1
vote
3answers
1k views
Can I prevent window.onbeforeunload from being called when doing an AJAX call
I have an AJAX-based grid control.
We hook into the window.onbeforeunload event to check if they have unsaved data and if so present them with a message "Are you sure you want to …
0
votes
1answer
28 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.w …
0
votes
1answer
66 views
“Unknown Exception” when cancelling page unload with “location.href”
I'm capturing the window.onbeforeunload event using the following code:
window.onbeforeunload = function (evt)
{
if(checkIsDirty())
{
var message = 'If you …
0
votes
0answers
68 views
Internet Explorer calling window.onbeforeunload on window.open and AJAX calls
Ok, I have spent a while on this problem and this is what I have gathered:
If you make an AJAX call in IE7 and you have a window.onbeforeunload function specified, it calls the o …
0
votes
2answers
365 views
Firefox shows issue with window.onbeforeunload event
When using onbeforeunload function, I don't want to show warning message for submit button and some other buttons also inside my form. I am checking boolean[T/F] condition to fire …
0
votes
0answers
92 views
Google chrome onbeforeunload wrong behavior with iframe
Let say I have two pages. One of them contains another one inside as iframe. If you subscribe to onbeforeunload event on the parent page, then this event doesn't triggers if you cl …
0
votes
4answers
57 views
Strategies for preserving form data ( on tab/browser close )
I have an issue with a task management application where occasionally users close their browsers/tabs and the information which they type goes away because they accidentally close …
0
votes
1answer
41 views
how can i clicked a link in diffrent frames without firing onbeforeunload in the other frames
i have a web page that contain two frames such as menu at the left side and content at the right side. in the content frames, i've used onbeforeunload function that fires whenever …
1
vote
3answers
138 views
Dealing with unsaved form data when user closes the browser
I'm having hard time trying to figure out how to auto-save user data in a form when the browser is being closed or user changes the page. The onBeforeUnload event is OK when you wa …
1
vote
2answers
331 views
onbeforeunload confirmation screen custumization
Is it possible to create a custom confirmation box for the onbeforeunload event in a browser? I tried but then I get 2 confirmation boxes (one from me which is nothing more than re …
