PDA

View Full Version : Target to the top of the current page?


helpplease
08-09-2002, 07:16 PM
I know this is a simple question, but I'm too lazy to go look for the answer...
How do I make a link that goes to the top of the current page without reload the page? :o

boxer_1
08-09-2002, 07:28 PM
How's this?

<html>
<head>
<title>Example</title>
</head>
<body>
Top of page...<a name="top" />
<br /><br /><br /><br /><br /><br /><br /><br />
<br /><br /><br /><br /><br /><br /><br /><br />
<br /><br /><br /><br /><br /><br /><br /><br />
<br /><br /><br /><br /><br /><br /><br /><br />
<br /><br /><br /><br /><br /><br /><br /><br />
<br /><br /><br /><br /><br /><br /><br /><br />
<br /><br /><br /><br /><br /><br /><br /><br />
<br /><br /><br /><br /><br /><br /><br /><br />
<br /><br /><br /><br /><br /><br /><br /><br />
<br /><br /><br /><br /><br /><br /><br /><br />
<br /><br /><br /><br /><br /><br /><br /><br />
<a href="#top">Go to top of page</a>
</body>
</html>

helpplease
08-09-2002, 07:50 PM
Thanks!:thumbsup: