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.

Facebook is almost completely AJAX, and I'm aware in older browsers and IE9, Facebook uses the hash tag to rewrite unique URLs, like...

http://www.facebook.com/home.php#!/?sk=welcome

http://www.facebook.com/home.php#!/?abc123

However, in Google Chrome and Firefox 4, Facebook is using something different, and rewriting to:

http://www.facebook.com/?sk=inbox

http://www.facebook.com/home.php?sk=bd

All completely in AJAX, modifying the URL and not even just whats after the hash tag (which never gets sent to the server.)

share|improve this question
It not because IE9 isn't modern, it is. Its because IE9 doesn't use web-kit; and why should they have to. – user1086698 Dec 7 '11 at 23:22
That's not true. pushState is part of HTML5 and also Firefox is a Gecko browser. – echeese Dec 8 '11 at 1:48

1 Answer

up vote 4 down vote accepted

It is using the new HTML5 history API, in particular the history.pushState method.

It allows to change the path, query or fragment part of an URL.

share|improve this answer
2  
Which, of course, is only available in modern browsers and not IE9. – Rob Apr 9 '11 at 12:18

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.