Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Using JavaScript, is there a way to update window.location.hash without scrolling the web page?

I have clickable title elements that toggle the visibility of a div directly beneath them. I want the /foo#bar in the history when clicking titles but don't want the page scrolling about. So when navigating away from /foo#bar I'll be able to use the back button and have the div whose ID is in window.location.hash be visible upon return.

Is this behavior possible?

share|improve this question

4 Answers

up vote 3 down vote accepted

This behavior is very much possible. You should look into some of the libraries that have been developed to give you this functionality.

Really Simple History: http://code.google.com/p/reallysimplehistory/ SWFAddress: http://www.asual.com/swfaddress/

share|improve this answer
Great. Those look good except for the existent documentation for RSH. I think SWFAddress looks like the best option for now. – Jonathon Watney Mar 16 '09 at 20:06
Indeed. I feel that there is a lack of documentation of RSH. I use SWFAddress and so far it has worked just fine. – Willem Mar 18 '09 at 0:25

As easy as it get

var scrollmem = $('body').scrollTop()
window.location.hash = hash;
$('html,body').scrollTop(scrollmem)
share|improve this answer
This works great, thanks! – Sam Jun 28 '10 at 18:08
Very slick, thanks! – VictorKilo Jan 11 at 18:23
I think the first line should be "var scrollmem = $('html,body').scrollTop();" to match the third one. Otherwise it doesn't work for me in firefox. – Anthony May 13 at 15:37

Another thing you could try is changing the id of the element the hash points to temporarily. Worked for me!

function changeHashWithoutScrolling(hash) {
  var id = hash.replace(/^.*#/, ''),
      elem = document.getElementById(id)
  elem.id = id+'-tmp'
  window.location.hash = hash
  elem.id = id
}
share|improve this answer
This is awesome. Works great. – samg Oct 20 '10 at 22:22
I think you mean document.getElementById(id); – AlienWebguy Apr 18 '12 at 21:24
Thank you @AlienWebguy, fixed the function in the comment. – Sunny May 22 '12 at 12:09

See this stackoverflow question and/or this page where I present a basic script to address the problem.

share|improve this answer
Thanks. I've checked out that question and your custom script. – Jonathon Watney Mar 16 '09 at 20:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.