I'm trying to find the best approach not to break the back button in my javascript application.

In my research I'm trying to see what the state of the art is. So I turned to google maps to see how it works.

It does have back/forward functionality, but it doesn't change the url when generating a new history entry. Try to go to http://maps.google.com/, type NY and press enter. Now use the back button. No url change.

How do they do this? I tried to figure it out but I have a hard time wading through outdated documentation about javascript history and IE6 tips.

link|improve this question

Duplicate of: stackoverflow.com/questions/tagged/browser-state – balupton Sep 18 '10 at 11:46
feedback

3 Answers

up vote 1 down vote accepted

Create a new history entry:

location.hash = 'new_history_entry';

Creating no history entry:

location.replace('http://no/new/history/entry');

Google maps is using frames. To verify it, run HttpFox. You'll get a HTML page with javascript in it. You can analyse it on your own, or just believe me that it works with frames.

link|improve this answer
This loads a new page without changing the history. I want to not load a new page but change the history. Good to know thoug. – silviot Aug 25 '10 at 16:28
ow, that's done with location.hash. I'll update my post. – Lekensteyn Aug 25 '10 at 16:29
I know location.hash, but that's not what google is doing. Please do try their history. Search something and go back. No url change (hash included), but the page changes. – silviot Aug 25 '10 at 16:32
1  
They're using frames, the opened page (in a hidden frame) sends code to the parent, which shows the map. – Lekensteyn Aug 25 '10 at 16:41
feedback

Something like YUI Browser History Manager will do it

link|improve this answer
feedback

Lekensteyn's answer will not add the back/forward buttons in IE6, you need a frame for that. jQuery History uses the onhashchange event if the browser supports it (all modern browsers do) if not it will add the appropriate backwards support needed (ie6 needs iframes, firefox 1, ie7 etc just need interval checks).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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