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
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.
|
|
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 Since this is relatively new, older browsers won't support it. You could use the jQuery BBQ Plugin for cross-browser applications. |
|||
|
|