Questions tagged [history]

Please refrain from using this specific tag as it is not appropriate for questions related to the history of programming. If you have inquiries about browser history, kindly utilize [browser-history] instead. Queries regarding the JavaScript library should be tagged with [history.js]. For discussions on the HTML5 API, please use [html5-history]. Questions related to version control can be addressed by adding the [revision-history] tag. And finally, if you need help with recalling inputs in an entry box, consider tagging your question with [input-history].

Is there a way to modify the window's location without having to reload it and without resorting to any sne

Initially, I believed that the hash hack was a necessity, but after observing the recent updates from Facebook, my perspective has shifted. The original hash hack (not certain if this is the correct term) involved changing location.hash to save a state in ...

The history mode router in Vue disrupts the dynamic URL hashing

When using Vue version 2.6.14 and setting Vue Router to history mode, encountering a URL with a hashtag "#" can cause issues with dynamic paths. const router = new VueRouter({ base: `${process.env.VUE_APP_PUBLIC_PATH}`, mode: 'history', routes: [ ...