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.