Hello !
I wanted to mention that the script at
http://www.mikage.to/jquery/jquery_history.html
fails in Safari.
The cause is that Safari doesn't update the location.hash value when you
press the "Back" button (though the address bar is correct).
Another error was that it added %23 in the URL (that became #%231 instead of
#1). This I fixed at line 52 with:
- location.hash = newhash;
+ location.hash = jQuery.browser.safari?hash:newhash;
Alas, I don't know how to fix the bigger bug. And I get nightmares just
reading a solution given at
http://bloomd.home.mchsi.com/histapi/howitworks.html
-- Fil
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/