Oct 1, 2003 #1 knuckle05 Programmer Joined Dec 17, 2001 Messages 247 Location 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 Joined Jun 1, 2003 Messages 40 Location 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 Joined Aug 14, 2002 Messages 2,106 Location 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 Joined Dec 17, 2001 Messages 247 Location CA ahhhhhh....i see thanks!!! Upvote 0 Downvote