|
You can try adding an anchor to make browser return to anywhere on your page you want it to.
The first tag needs to be placed in between your <body></body> tags where you wish the browser to go.
Below I've named it "Top" and when you click on the word "Top" it takes you to the top of your page if it is placed in or near the top.
The second tag should be placed where ever you have someone click that needs to be redirected to a specific place on your site.
<a name="Top"></a>
<a href="#Top">Top</a>
Last edited by tailtiu : 08-23-2004 at 03:23 PM.
Reason: missed tag close
|