You can use name
attribute for your anchor
tag to achieve this.
Let say you have a div
with id content
<div id="content">This is my div</div>
Next make sure you have a anchor
tag with name
attribute same as the id
of the div
content
<a href="#" name="content">Click to go to the top</a>
Live Demo.
Scroll down to see the link
Another approach to do this would be
<div id="content">My div</div>
Then your anchor tag's href should be #content
<a href="#content">Click to go to top</a>
Live Demo.