HTML5-History-API
HTML5-History-API copied to clipboard
HTML5 History API expansion for browsers not supporting pushState, replaceState
IN IE11 there is an issue that 'popstate' not fired with hashchange so if you are working with hash URL's then history API works incorrectly and CheckforURLupdate always empty in...
I have modified the firePopState method by adding a Map, which keeps the URL and state of object in case of IE/Edge. ``` function firePopState(currentUrl) { var o = document.createEvent...
Hello, In a mean-stack web application, I use `html5mode` and have the following code in `index.html`: I have defined the following angular-ui-router: .state('addinHome', { url: '/addin/home', template: "home page" })...
Hello, my current url has pathname, and therefore like this format: "http://localhost/pathname/" And after pagination it should look like this: "http://localhost/pathname/?page=2" However after pushState function, the url becomes this: "http://localhost/pathname/#/pathname/?page=2"...
[history.zip](https://github.com/devote/HTML5-History-API/files/649139/history.zip) When i click the "item" button in IE9, i expect the hashListener to be executed. I think it's caused by [L445](https://github.com/devote/HTML5-History-API/blob/master/history.js#L445) Removing this line fixes the problem, but i...
I follow this ``` $(function() { // we get a normal Location object /* * Note, this is the only difference when using this library, * because the object window.location...
Is there a different way for setting the configuration options? I use the library concatenated and minified together with other scripts so there's no way I can set those options...
Using your great polyfill with IE8 on in-page anchor links like this. ``` // looking for all the links and hang on the event, all references in this document $('.menu-a').on('click',...
trying in compatibility mode
Hi. In Android 4.0.3 on Android Browser is not support property history.state. Information from [here](https://developer.mozilla.org/ru/docs/Web/API/History_API)  Not everything that supports methods history.replaceState and history.pushState, has a property history.state support. Can...