So SOF,
I've got a little problem where I don't want #BOT
to appear in my url when I click my links when using page anchors.
Javascript
$("a.bottom").click(function() {
window.location = '#BOT';
});
Different links...
<a class="bottom" href="javascript: void(0);">BOTTOM</a>
<a href="#BOT">BOTTOM</a>
Anchor
<a id="KEY"></a>
How do I stop it adding #BOT
in the pageurl bar?