html - Link within the same page, leaving history -


i have link <a href=...> points anchor on same page id, using #. after traversing link, when go through browser history using backward/forward button on browser, browser not scroll page anchored position. can let scroll?

yes, can, using javascript. in script, write this:

window.onhashchange = function(){   location.href = location.hash; }; 

Comments