Reputation: 14713
Does anybody know how to make the vertical scrollbar the browser window return to the top in code? Either javascript or code-behind would be fine.
Upvotes: 0
Views: 841
Reputation: 14031
This will do it in JavaScript.
<a href="#" onclick="javascript:scroll(0,0);">Top</a>
Upvotes: 1