I have some javascript code which, at one point, sets window.location.hash
to a specific string. This works fine in Firefox 3, but I want to know if I will run
Old thread i know, but window.location.hash
is subject to a size limit as well. If you're passing large amounts of data, and want to save state in the hash, you could run into some issues.
IE will give you the error:
SCRIPT5 - Access denied.
if you try to assign a hash that is over the limit
which is super useful.
Just food for thought.