35

Possible Duplicate:
How does GitHub change the URL but not the reload?

Hi folks,

I have noticed that Github.com does not force users to download webpages when browsing repositories, but instead uses AJAX in order to refresh the page content.

Github also changes the browser address bar to the real address representing the content. I have no idea how to implement this if not by using # hashtags within the url.


In short: github uses ajax to load new webpages, without using hashtags. How do they accomplish this?


Any ideas?

1
  • HTML5 History API is what you're looking for. Commented Apr 9, 2011 at 21:04

2 Answers 2

48

By using:

window.history.pushState("string", "Title", "newUrl");

This is new in HTML 5.

Your url will change to newUrl without reloading the page.

Note: title arg in the method will not change the Title of the html page. This is used to name the page in the browser history, incase u go back and then go forward.

Sign up to request clarification or add additional context in comments.

1 Comment

10

Have a look at the HTML5 history api. If you plan to use it, getting a library wrapping it and maybe even adding a fallback to location hashes would be a good idea.

https://github.com/browserstate/history.js looks not bad from a quick look at it.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.