How to make the page load to an anchor tag?

anchor, tags

Solution

Something simple like this would do it

<body onload=' location.href="#myanchor" '>
<a id='myanchor' href='#'>anchor text</a>

Problem

how could I, or is it possible, to make it so when the webpage loads, the first thing it shows you is the part of the page, where the anchor tag is you want the person to first see. Is it possible? Thanks for all help in advance.

Original source