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?
history. pushState({page: "another"}, "another page", "example. html"); This will change the URL, but not reload the page.
replaceState() method The replaceState() is another method that updates the URL without reloading the page. It works exactly the same way as pushState() , but replaces the existing browser history entry instead of adding a new one.
HTML5 History API allows browsers to change the URL in browser address bar without reloading or refreshing the page using pushState function. The pushState method works similar to window.
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.
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With