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.

Go to any github page and click on any of the directories/files, the URL changes but only part of the page is updated. There's no whole page reloading.

How do I do something similar using jQuery?

Does this work on most browsers (I'm using Chrome)?

Thanks.

share|improve this question
1  
If this question gets merged with a duplicate, please retain @alex's answer. It is better than Zach's answer in the other post. – Greg Sep 29 '11 at 0:26
I'm reopening this since the original was deleted. It only contained a link to a blog for an answer. – Bill the Lizard Sep 29 '11 at 11:17

2 Answers

up vote 21 down vote accepted

They use the history API, or specifically, history.pushState().

You can use this, jQuery is not required, but there are plugins such as history.js.

This works on some browsers, namely Chrome, Safari and Firefox. IE10 will support this.

GitHub also blogged about this.

share|improve this answer
Does it need some configuration on backend? – kspacja Feb 13 at 12:31

Github use PJAX (Ref). You may see about jquery-pjax here. Note that this feature is not covered support by all browser, there are some browser that cannot be use this benefits.

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.