Comment on I took "abusing the HTML5 History" to the next level.parentComments−paulirish15yIt'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!−Sephr15yYou don't need the HTML5 history API for that either. location.replace("#...");−Dell15yI agree with you guys.
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.
I agree with you guys.