Warn to Save before leaving a page...

J

Jamie Jackson

I've got a form that's nested in a larger application. I need to
program it so that the user is warned to save upon clicking on any
exit point in the application.

So, if they click on any of the nav buttons in the header/nav bar,
they need to get an alert:

"Would you like to continue without saving your changes?"
_Yes_ _No_

It would be a big pain to retrofit the application's nav
buttons/framework for just these forms, so I'm looking for a solution
that doesn't require editing the source code of the application's
existing navigation.

What are my options?

BTW, this application is for IE 5+ only, FWIW.

Thanks,
Jamie
 
B

bengee

Jamie said:
So, if they click on any of the nav buttons in the header/nav bar,
they need to get an alert:

"Would you like to continue without saving your changes?"
_Yes_ _No_

<body onunload="if (confirm('Save changes?')) { doSomethingHere(); }">
 
J

Jamie Jackson

<body onunload="if (confirm('Save changes?')) { doSomethingHere(); }">

Great! It still requires me to modify the application framework, but
at least it's only in one place (good news). :)

Thanks very much,
Jamie
 
J

Jamie Jackson

Great! It still requires me to modify the application framework, but
at least it's only in one place (good news). :)

I think this isn't going to work. AFAIK, by the time you get the
confirmation, you've already unloaded the page, and are halfway to the
next. Is there a way to prevent the unLoad from continuing, when the
user confirms in the negative?

I'm racking my brain trying to figure out how to do this without
retrofitting all of the nav links.

I think I may be on to something with the following, would someone
please let me know if I'm going in the right direction, or if there's
an easier way, or if there's a solution to the onUnload issue above?

function changeLinks(d) {
// this picks up all the links but those in my popup nav :-( ...it's
a start, though
for (var i=0; i < d.links.length; i++) {
// maybe save each link's old location into an array here, for
later use

// now, rewrite each link to a confirm. later, code the following
to load a new window with the old url?
d.links.href = "javascript: confirm('Exit before saving?')";
}
}
changeLinks(document);

Thanks,
Jamie
 
B

bengee

Jamie said:
I think this isn't going to work. AFAIK, by the time you get the
confirmation, you've already unloaded the page, and are halfway to the
next. Is there a way to prevent the unLoad from continuing, when the
user confirms in the negative?

I think you're right there... the page is already on it's way to
"unloading" and i don't think that can be stopped.
I'm racking my brain trying to figure out how to do this without
retrofitting all of the nav links.

I think I may be on to something with the following, would someone
please let me know if I'm going in the right direction, or if there's
an easier way, or if there's a solution to the onUnload issue above?

function changeLinks(d) {
// this picks up all the links but those in my popup nav :-( ...it's
a start, though
for (var i=0; i < d.links.length; i++) {
// maybe save each link's old location into an array here, for
later use

// now, rewrite each link to a confirm. later, code the following
to load a new window with the old url?
d.links.href = "javascript: confirm('Exit before saving?')";
}
}
changeLinks(document);


This looks like a good way of doing it. Change the href's to something
like :-

d.links.href = "javascript: if (confirm('Exit?')) {
document.location.href = 'somefile.htm'; } else { void(0); }";

Hope this works!!

Ben
 
J

Jamie Jackson

Thanks again Ben,

Here's what I came up with:

<script language="JavaScript1.2">
function promptBeforeExiting (oldLink) {
if (confirm("Exit without saving?")) {
window.location = oldLink;
}
}

function switchLinks(d) {
var oldLink="";
for (var i=0; i < d.links.length; i++) {
oldLink = d.links.href;
d.links.href = "javascript: promptBeforeExiting('"+ oldLink + "')";
}
}
switchLinks(document);
</script>

It's working very well for <a href>s, and now I've got to figure out
how to disable my popup links as well...

Thanks,
Jamie
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,057
Latest member
KetoBeezACVGummies

Latest Threads

Top