I either dreamt about chrome (dev channel) implementing a way to update the address bar via javascript (the path, not domain) without reloading the page or they really have done this...

However...I can't find the article I think I read.

Am I crazy or is there a way to do this [in chrome]?

p.s. I'm not talking about window.location.hash (et al)...basically if the above exists the answer to this question will be untrue.

link|improve this question

80% accept rate
feedback

1 Answer

up vote 79 down vote accepted

Found it!

Read all about it here: http://www.spoiledmilk.dk/blog/?p=1922. For a more in-depth look into pushState/replaceState/popstate go here (https://developer.mozilla.org/en/DOM/Manipulating_the_browser_history).

and the code:

window.history.pushState("object or string", "Title", "/new-url");

See my answer to this question for more info.

link|improve this answer
2  
Ah, the functionality is in WebKit and landed a few months ago <bugs.webkit.org/show_bug.cgi?id=36152>;. Nice find! – byoogle Jul 27 '10 at 1:46
this is now used by github, while tree navigation – Vprimachenko Feb 22 '11 at 19:11
@Vprimachenko: Yup. And they break my back button every once in a while. – David Murdoch Feb 22 '11 at 19:27
Thanks, I was almost done writing out a new SO question when this post popped up and answered it. – Don Wilson Aug 19 '11 at 3:56
I was wondering how Facebook do that! Thanks! – NiematojakTomasz Sep 20 '11 at 20:41
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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