You can use this little snippet to scroll to the top of the page using javascript (in case you don't wan't to use html anchors)
1
2
3
|
<!-- The click on this link will take you to the top of the page -->
<!-- Place this link on the bottom of the page -->
<a href="#" onclick="window.scroll(); return false">Scroll to the top</a>
|