How do I add fallback functions for history.pushState() and window.onpopstate ? I need an if..else kind of logic. If the browser supports proceed, else I need an alternative logic. Even in some modern browsers it is not supported eg. in iPad. If not pushState, I need way to catch the back button click of the browser in JS without any having infinite loop.

link|improve this question

69% accept rate
feedback

1 Answer

up vote 1 down vote accepted

history.js might help you. It emulates html5 history functionality on older browsers.

https://github.com/balupton/history.js

If you don't wan't to use history.js you can probably use url hashes and the hashchange event to catch the back button clicks.

link|improve this answer
Looks like this is the only option now. However, the situation is such that I don't want to change hash also. – Prabhat Jun 30 '11 at 8:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.