How can I create a bulletproof "Back to top" anchor that works regardless of whether the site has a base href or not?
Should I use script to sniff the current URL of the page and dynamically create the anchor?
Anchor at the top of the page is:
<a id="top"></a>
"Back to top" link is at the bottom of the page:
<a href="#top">Back to top</a>
However, when there is a base href present on the page, regardless of the current directory, the "back to top" always resolves to the base href. How can I overcome that?
<p>To go pack to top, press Home on your keyboard.</p>– Ansis Malins Nov 22 '11 at 17:59