javascript - Change url without reloading the page -
how can pass type of url:
http://domain.com
to type:
http://domain.com/#0123456789
without reloading page.
i not want use html5 window.history.replacestate
function, not work older versions of internet explorer.
i found answer:
location.hash = "0123456789";
sorry answer own question...but no answer gave right point.
Comments
Post a Comment