Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Title of history.pushState is unsupported, what's a good alternative?

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:

enter image description here

And it is working on Safari and Opera.

But on Chrome and FireFox, this is what the user sees:

enter image description here

Trying to change document.title doesn't work as it changes all the entries within the history title:

enter image description here

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?

like image 649
Pacerier Avatar asked Oct 12 '14 12:10

Pacerier


2 Answers

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('<','&lt;').replace('>','&gt;').replace(' & ',' &amp; ');
}
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.

like image 180
Sebastien Lorber Avatar answered Sep 27 '22 22:09

Sebastien Lorber


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"
like image 20
Catalin MUNTEANU Avatar answered Sep 27 '22 20:09

Catalin MUNTEANU