Typically if you have some text and you want to warn the user about saving before leaving the page, you just do something like ....

window.onbeforeunload = function (){
    return "Hey, get back here";
};

Okay, that's fine, except... I have one of those crazy URLs that look like this:

http://example.com/#/Woo/Ajax/headaches/

Of course, the unload event doesn't trigger when jumping between hash tags, so the onbeforeunload doesn't tigger either.

What can I do to alert a user from losing everything because they mis-clicked somewhere?

I'm using http://www.asual.com/jquery/address/ for my hash-management.

link|improve this question

feedback

1 Answer

I assume you have a system to handle hash changes.. if so then you have to organize the hash sections of your site and add custom behaviour based on if the user goes to "invalid" hash sections.

If you don't have a system, I recommend ben alman's jquery BBQ script.

link|improve this answer
I'm using asual.com/jquery/address – Incognito Jul 19 '11 at 20:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.