I can\'t get window.location.hash = location.hash to work in Safari.
window.location.hash = location.hash
I\'m using javascript to wrap the contents of my page with a scrollable DIV, placed
Before JavaScript changes the orginal hash location, get the scroll position using
var st = $(window).scrollTop().
When you want to restore the scroll location, use
$(window).scrollTop(st);