history.js icon indicating copy to clipboard operation
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...

Results 104 history.js issues
Sort by recently updated
recently updated
newest added

This change makes it possible to check if the statechange event is caused by the browser back & forward buttons. And can later be checked via the navigation variable: `var...

1.`History.replace({foo: "bar"});` on a.html. 2. move to b.html. 3. move to a.html again by clicking an anchor. 4. `History.getState().data` returns `{foo: "bar"}` 1 and 4 isn't same history stack. I...

There seems to be no limit how many times you can pushState and over time the browser will get slower and crash.

Title doesn't change when using History.pushState(). But it DOES change when you use window.History.pushState(). Nowhere was this documented. How about letting us know that we have to use window.History.pushState()? Hope...

I’m trying to use History.js in IE9 and I don’t really get how History.js works or what it’s trying to do. I start with this URL: `http://localhost:8080/gxa/search/differential?geneQuery=zinc+finger` In the webpage...

I am trying to use history.js with IE 9. If my URL looks like: http://my.domain.com/autoshow and I want to append "?last_page=2" to it.. I am doing History.replaceState({}, "", "?last_page=2") which...

Hello guys. I have an issue with latest History.js 1.8b2. The problem is with URLs with params. For example if we push `/catalog`, then everything works find, but if we...

confirmed

In Internet Explorer IE8 and IE9 there seems to be a problem that includes the host in the hash. ``` http://www.example.com/?page=foobar -> http://www.example.com/#http://www.exmaple.com?page=foobar&_suid=123456789 but http://www.example.com/directory/?page=foobar -> http://www.example.com/directory/#?page=foobar&_suid=123456789 ``` I noticed...

Perhaps I'm overlooking it, but I don't see documentation for how to develop on the project. Doesn't need to be much, just quick instructions on how to run the build...

I am getting this error in IE 11, when clicking the href link, and when History.pushState is invoked. Basic HTML: $(window).load(function() { var State = History.getState(), $log = $('#log'); ```...