Hacker News new | ask | show | jobs
by ry0ohki 5576 days ago
Cool concept, just make sure you open it in a new window or you'll never make it back to HN!
1 comments

It's actually not using HTML5 history like the links before. It's just doing hash manipulation.

It it used history.replaceState it could not only manipulate the URL completely but also it wouldn't make history events so the back button would work!

You don't need the HTML5 history API for that either.

    location.replace("#...");
I agree with you guys.