Mike Alsup schrieb: >> location.hash is totally broken in Safari. ;( > > Check out the tabs plugin for an example of solving this in Safari.
Uuuugh! Do not set location.hash manually in Safari. It puts Safari into "eternal load" state (the spinner in the tab won't disappear). Therefore I'm creating a form and submit that to the hash, if I need to change the hash... that even works without having to append the form to the body: var tempForm = $('<form action="' + hash + '"><div><input type="submit" value="h" /></div></form>').get(0); tempForm.submit(); And it needs at least a submit button inside... -- Klaus _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/