I'm building a fail safe for my form that is going to warn users that if they leave the page their form data will be lost (similar to what gmail does).
window.onbeforeunload = function () {
if (formIsDirty) {
return "You have unsaved data on this form. Don't leave!";
}
}
The above function works great in firefox, but in IE it is triggered by any href link, even ones that are links to javascript and not other pages.
for example....
<a href='javascript:someFunction();'>click</a>
I'm wondering if there is any way to get around this, as I do not want the user thinking that they are leaving the page when they are simply clicking a button on it. I do not have the option of rewriting all the various links as they are built in and numerous.
Any ideas?
(Like some of the other answers, this requires changing how the JavaScript is bound. If that doesn't work for you, disregard.)
I found that in IE 7 through IE 10, simply using jQuery .click() with
preventDefault
works without showing theonbeforeunload
message (IE 11 does not show thebeforeunload
message for any of my test cases). This is true whether the href is '#' orjavascript:void(0)
. I expect the conclusion holds ifattachEvent
/addEventListener
is used directly, but I didn't test that.There is a demo of the below at http://jsbin.com/tatufehe/1 . Both of the versions (in green) with
preventDefault
work (don't show thebeforeunload
dialog). The one withoutpreventDefault
does show it (as a comparison).I just ran into a similar problem and found a very easy solution:
This will remove the onbeforeunload event just before the click event is triggered.
If you include a bookmark symbol in the href of the a tag you should be able to still use the onclick event to include your JavaScript.
I’ve run a number of tests and this appears to execute the JavaScript without triggering the onbeforeunload event. I’d be curious to know if this works for others or if you still have the same problem after implementing a tags in this manner.
If the user mouse is on a link and they trigger refresh page with the keyboard or activate a link with the keyboard, the prompt won't show up. So Dr.Molle approach will not work in this rare case.
You may remove and re-assign the onbeforeunload when hovering those links:
Move any script to a
click
event handler instead, with a fallback page for users without JavaScript:The unobtrusive JS champions out there will probably object to the use of the
onclick
attribute, but the fact is that it works, it's the simplest way to add an event handler and the simplest way to provide an example. For better separation of concerns, you could instead use either a DOM0onclick
property,addEventListener()
/attachEvent()
or a library.