Most voted "html5-history" questions
HTML5 History API is a custom way to manipulate browser history via script.
Learn more…6 questions
Sort by count of
-
14
votes1
answer3877
viewsWhat is the history.pushState function for?
I realized that the object history has some relationship with browser history handling. There are methods like go and back which are more understandable, but do not understand very well what makes…
-
3
votes2
answers374
viewsJoining Modal Bootstrap with HTML5 History API
There is a way to join the modal from Bootstrap (any version) with the API History? The logic would look like this: Opening the modal URL in the navigation bar would change to…
-
2
votes1
answer1943
viewsWhat is the use of window.history.replaceState?
Hi, I’d like to know what the following code does: window.history.replaceState
-
1
votes1
answer116
viewsDoubt about $.getJSON and history.pushState
I am studying about history.pushState and intend to develop a website as a way of study like this http://html5.gingerhost.com/ Regarding jQuery (function to load the new content) I understood…
html5-historyasked 9 years, 9 months ago Igor 1,247 -
1
votes1
answer58
viewsBack button of browser delete a class
I’m making a website that works on a single page. So when I click on a menu button it scrolls to the area I want with: $('html, body').animate({scrollTop: $('#nomedoid').offset().top},Math.abs(0));…
-
0
votes0
answers20
viewsSite Javascript stops working when using history.push for another page
When using the; <a href onClick={() => history.push(`/about`)}> Javascript stops working by locking the page slides and other objects that depend on it. I put javascript in public/js and…