top.location.hash = "";
adds a # to my addressbar. As soon as top.location.hash = "";
is called and a # is added my browser window jumps to its top.
Is there any chance a could prevent that?
$('#element').live('click', function() {
top.location.hash = "map";
});