<a name="loc"></a>
<a href="javascript:return false" onClick="document.location.hash='loc';document.location.reload(false);return false">Click here to go to the...
I added "return false", to no avail, the results remained the same. I cannot go to my URL#anchor; it constantly goes to URL without the direction to the anchored spot on the URL
<a name="loc"></a>
<a href="#loc" onClick="document.location.href='#loc';document.location.reload(false);return false">Click here to go to your location</a>
Requirement is to have JavaScript-based client-side pagination on a page with form items. We need to retain the form values the user selected while they paginate. Normally I would store everything...