If you use anchor link in IE6 (Internet Explorer 6), it might not work. Look at the example below:
<a name="top"></a>
<div id="text">
text here...
</div>
<a href="#top">back to top</a>
When you click on the ‘back to top’ link, you expect to go to the top link. It works perfectly in browsers like Firefox and Chrome. But in IE6, it doesn’t behave the way it’ supposed to be.
To fix the issue, instead of using an empty ‘a’ tag to create the anchor, use the closest element id, in the above example, you can change it to:
<div id="text">
text here...
</div>
<a href="#text">back to top</a>