Oct 1, 2003 #1 knuckle05 Programmer Dec 17, 2001 247 CA Hi All, How do you make a hyperlink that makes a page scroll back to the top of the page???
Oct 1, 2003 #2 TashaGoddard Technical User Jun 1, 2003 40 GB You put an anchor at the top of the page (before your heading, for example), e.g. Code: <a name="top"> Then, where you want the <b>Back to top</b> link, you put a link to the anchor, e.g. Code: <a href="#top">Back to top</a> Upvote 0 Downvote
You put an anchor at the top of the page (before your heading, for example), e.g. Code: <a name="top"> Then, where you want the <b>Back to top</b> link, you put a link to the anchor, e.g. Code: <a href="#top">Back to top</a>
Oct 1, 2003 #3 TheConeHead Programmer Aug 14, 2002 2,106 US put this at the top of your code: <a name="top"> but this for your link to the top: <a href="#top">Top</a> Upvote 0 Downvote
put this at the top of your code: <a name="top"> but this for your link to the top: <a href="#top">Top</a>
Oct 1, 2003 Thread starter #4 knuckle05 Programmer Dec 17, 2001 247 CA ahhhhhh....i see thanks!!! Upvote 0 Downvote