vote up 1 vote down star

I have a button a user presses and it shows a hidden div using jQuery.

My question is, how do I scroll to the top of the page using a jQuery command in that function? It is desirable if the scroll bar instantly jumps to the top. I'm not looking for a smooth scrolling.

flag

65% accept rate

4 Answers

vote up 5 vote down check

If you don't need the change to animate then you don't need to use any special plugins - I'd just use the native JavaScript window.scrollTo method -- passing in 0,0 will scroll the page to the top left instantly.

window.scrollTo(x-coord, y-coord);

Parameters    
    * x-coord is the pixel along the horizontal axis.
    * y-coord is the pixel along the vertical axis.
link|flag
vote up 2 vote down

You don't need jQuery to do this. A standard HTML tag will suffice...

<div id="jump_to_me">
    blah blah blah
</div>

<a target="#jump_to_me">Click Here To Destroy The World!</a>
link|flag
vote up 2 vote down

If you do want smooth scrolling, try something like this:

$("a[href='#top']").click(function() {
  $("html").animate({ scrollTop: 0 }, "slow");
  return false;
});

That will take any <a> tag whose href="#top" and make it smooth scroll to the top.

link|flag
+1. I was just wondering how to do something like this and google lead me here. QUestion though, where is "scrollTop" function in the docs? I just looked but couldn't find it. – lyrae Jul 18 at 1:55
scrollTop is not function, it is a property of the window element – jalchr Nov 26 at 14:19
vote up 1 vote down

You could simply use a target from your link, such as #someid, where #someid is the div's id.

Or, you could use any number of scrolling plugins that make this more elegant.

http://plugins.jquery.com/project/ScrollTo is an example.

link|flag

Your Answer

Get an OpenID
or

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