history.js
history.js copied to clipboard
History.js gracefully supports the HTML5 History/State APIs (pushState, replaceState, onPopState) in all browsers. Including continued support for data, titles, replaceState. Supports jQuery, MooTools...
Per bower/bower.json-spec@a325da3
In the history system the "state" field is holds state that is independent from the URL and which is not preserved if you copy/paste the URL into a new browser....
Hello everybody! Thank you for the good library. I have a problem: Steps for reproduce: 1) go to www.site.ru (this is fake site and he doesn't work, just for example)...
Support AMD
Instead of assigning History to the window object, would it be possible to utilize the [AMD API](https://github.com/amdjs/amdjs-api) if the define function is present, similar to what they did in jQuery...
I've encountered a strange bug(?) in History JS. When I use the replaceState method, it seems that it's adding a new state to the already added states. Basically, what I...
Hi, Thanks @balupton for this plugin. Sorry for my bad english :( I tried `History.js` and it works for me, i can push new states and update the content when...
supose we are in this url. http://myexample.com?param1=val1¶m2=val2 and I set: History.replaceState(null,null,"http://myexample.com?param3=val3"); ### On chrome: URL changes to "http://myexample.com?param3=val3" (as I wish) ### On IE8: URL changes to "http://myexample.com?param1=val1¶m2=val2#?param3=val3" history.js attach...
The entire minified script should always end with a ";" - caused me unbelievable pain when trying to combine all my JS output into one file. Loads fine by itself...
Hey, thanks for the great library. I have a problem, I want to reset the URL and using: ``` javascript History.pushState({}, '', '/index'); ``` but not working for me, please...
IIS7 doesn't allow + signs by default (a setting can be changed in web.config but it introduces security risks since it allows more than the + sign), so just to...