The second parameter of History.pushState
and History.replaceState
can be used to set the "title" of the history entry.
This means that when the user clicks through page 1 to page 8, this is what he should see in his history bar:
And it is working on Safari and Opera.
But on Chrome and FireFox, this is what the user sees:
Trying to change document.title
doesn't work as it changes all the entries within the history title:
What's the best solution to this problem?
Are we forced to using only one history title for all the pages implemented using pushState
and replaceState
?
I had the same problem and it seems you are wrong.
If History.js does support it, you could too. By looking at the source code it seems history JS does it this way:
https://github.com/browserstate/history.js/blob/master/scripts/uncompressed/history.js#L1293
try {
document.getElementsByTagName('title')[0].innerHTML = title.replace('<','<').replace('>','>').replace(' & ',' & ');
}
catch ( Exception ) { }
document.title = title;
I tested and it works fine for me with Chrome: it does not "rewrite" the whole history titles. However it seems going back or forward can cause a page reload that can eventually reinitialize that title.
History.js gracefully supports the HTML5 History/State APIs (pushState, replaceState, onPopState) in all browsers.
Take a look at the demos here
Example of use:
History.pushState({state:1}, "State 1", "?state=1"); // logs {state:1}, "State 1", "?state=1"
History.pushState({state:2}, "State 2", "?state=2"); // logs {state:2}, "State 2", "?state=2"
History.replaceState({state:3}, "State 3", "?state=3"); // logs {state:3}, "State 3", "?state=3"
History.pushState(null, null, "?state=4"); // logs {}, '', "?state=4"
History.back(); // logs {state:3}, "State 3", "?state=3"
History.back(); // logs {state:1}, "State 1", "?state=1"
History.back(); // logs {}, "Home Page", "?"
History.go(2); // logs {state:3}, "State 3", "?state=3"
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With