Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Need to implement ajax navigation without any page reload I'm writing html to ajax container div. Is there any solution to handle browser back and forward events. Also adding to a bookmark? I need to cover all browser including IE 8 and higher. Thanks

share|improve this question
Can you be a bit more clear and separate your questions? Also, what have you tried?? – gopi1410 Dec 25 '12 at 7:56
I have a html page with top menu links. On link click event I'm changing the ajax-container div with appropriate html content and changing the url in address bar with hostname#?page=blabla (using jQuery). With such implementation browser back and forward buttons doesn't fork (actually window.history.back also doesn't work) and I'm trying to find out the proper solution. – Ars Dec 25 '12 at 8:07

1 Answer

The browser history is normally only updated when the browser loads a new page. AJAX doesn't replace the page, so the history is not changed.

HTML5 adds an API to allow Javascript to update the history directly, the history.pushState() and history.replaceState() methods. Your AJAX code should be able to use pushState() to add the old URL to the browser history, so the back button will work. See the HTML5 spec for the gory details.

Since this is relatively new, older browsers won't support it. You could use the jQuery BBQ Plugin for cross-browser applications.

share|improve this answer

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.