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 looking for a polyfill for HTML5 History API. I don't understand why https://github.com/balupton/History.js/ is widely popular since there are so many issues (as of June 27, 2012, there are 109 open issues reported on Github). What really annoys me is "statechage is triggered everytime pushState is called". I'd like to know, if there is a History API implementation for IEs (since all other browsers have implemented it already…).

share|improve this question
3  
You could just not support IE (I'm kidding). – Rocket Hazmat Jun 27 '12 at 16:36
I wish there were... Here are more comments on the same issue: stackoverflow.com/questions/8744487/… – jgivoni Jul 13 '12 at 20:18
Just want to second beatak's opinion. I started trying out history a few days and made good progress until I discovered the problems with the statechange event etc. – DavidHyogo Feb 16 at 12:31
1  
I have the same problem with History.js and just came across this alternative which looks like a promising solution : github.com/devote/HTML5-History-API – atomless Feb 26 at 19:42

1 Answer

It seems like there are no other polyfills than History.js. Modernizr lists a bunch of HTML 5 Polyfills here and they show PJAX as the only another alternative.

share|improve this answer
1  
it seems pjax handles your ajax and also dom replacement/update. since i'm using odata feeds and integrated with knockout this really doesn't work for me. just a heads up to other readers. – Shaun Wilson Jan 27 at 21:32

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.