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.