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.

I'm trying to implement a a way to do ajax calls and change the url by adding '/contact' or '/hiring' to the end of the domain name.

Firstly I was looking to using history API, but it is not supported by HTML 4 browsers like IE 8 and 9 which I need to be able to handle. So a solution to this is to use history.js which supports HTML 4 browsers by adding a hash to the url location by using names like: www.mysite.com/#?state=1&_suid=1 and www.mysite.com/#?state=2&_suid=2. And alternatively it would look like this in HTML5 browsers: http://www.mysite.com/?state=1

My first question is, what is the main difference between history.js and history API? Can I use history.js to create urls without the hash or question mark? Here's an example of history API at work: http://html5demos.com/history I basically want to use history.js the way that history API is working in that example link. Here's an example of history.js: http://balupton.github.com/history.js/demo/

Can someone explain to me the main differences between history API and history.js. And secondly are there any suggestions to getting the urls to appear without hashes or question marks, etc.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.