vote up 3 vote down star

What is the Javascript to scroll to the top when a button/link/etc. . . clicked?

flag

3 Answers

vote up 4 vote down check
<a href="javascript:scroll(0, 0)">Top</a>
link|flag
vote up 4 vote down

If you had an anchor link at the top of the page, you could do it with anchors too.

<a name="top"></a>
<a href='#top">top</a>

It'll work in browser's with Javascript disabled, but changes the url. :( It also lets you jump to anywhere the name anchor is set.

link|flag
vote up 0 vote down

actually, this works by itself, no need to define it.

<a href="#top">top</a>

This is a "magic" hashname value that does not need to be defined in browsers.

Just like this will "reload" the page.

<a href="/">reload</a>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.