Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hey, I have noticed that when browsing a GitHub repository it uses AJAX to load each folder / file.

I understand all this, I was just wondering how they altered the URL. Can you get and set the URL with JavaScript? If so it could be very useful for bookmarking a section of a JavaScript based website. ( a few pages within one, moved between with JavaScript )

Thanks.

share|improve this question
possible duplicate of GitHub source dynamic navigation – Paul Dixon Feb 11 '11 at 20:45
and also stackoverflow.com/questions/4664166/… – Paul Dixon Feb 11 '11 at 20:46

3 Answers

up vote 20 down vote accepted

It uses the new push/pop state functions in the history manipulation API.

share|improve this answer
Ah ha. It looks great, thanks! – Olical Feb 11 '11 at 20:39

They described this html5 functionality on their blog here

share|improve this answer

HTML 5's pushState

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.