On 9/30/08, Leanan <[EMAIL PROTECTED]> wrote: > How can I make it so that when the user clicks the back button in > their browser, this same thing happens, as I'll likely have people > trying to click the back button instead of the back link on the "page" > and then tell me it's broken. Is it even possible?
In addition to the history stuff that has been discussed, there's also a browser hook like: window.onbeforeunload = some_func() { // to prevent unload, return a string message // otherwise don't explicitly return or I think return void } HTH, Dave