Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 even if the scroll bar instantly jumps to the top. I'm not looking for a smooth scrolling.

share|improve this question

10 Answers

up vote 244 down vote accepted

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.
share|improve this answer
2  
This is not JQuery. See other answer that actually works using JQuery. – Roboblob Feb 28 '12 at 14:47
85  
That was my point, if you don't need to animate smooth scrolling then you don't need to use jQuery. – daniellmb Mar 1 '12 at 21:47
77  
Not enough jQuery doxdesk.com/img/updates/20091116-so-large.gif – Jeff Sep 27 '12 at 19:56
@Jeff was that a real post? – tybro0103 Mar 27 at 15:01
@tybro0103 I dont think so :P – Jeff Mar 29 at 17:44
show 1 more comment

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

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

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

share|improve this answer
   
+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. – katsh Jul 18 '09 at 1:55
5  
scrollTop is not function, it is a property of the window element – jalchr Nov 26 '09 at 14:19
3  
This works beautifully on FireFox 3.6.x, Safari 5.0.x, Chrome 12.x, IE 7.0, IE 8.0. – 0sumgain Jun 8 '11 at 16:05
thanks for this.. – Bragaadeesh Aug 26 '11 at 18:02
Thank you, works great – Wilson212 Sep 18 '11 at 0:09
show 5 more comments

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>
share|improve this answer
2  
+1 This is good if you need to navigate to specific element rather just to the top. – ish1301 May 30 '11 at 15:29
2  
Use '<a href="#">Top</a>' to jump to the top of the page. – Bakanekobrain Apr 10 at 18:48

All of these suggestions work great for various situations. For those who find this page through a search, one can also give this a try. JQuery, no plug-in, scroll to element.

$('html, body').animate({
    scrollTop: $("#elementID").offset().top
}, 2000);
share|improve this answer
this is the third of the three. nice way to round out the options! – roberthuttinger Mar 14 at 20:21

$("html, body").animate({ scrollTop: 0 }, "slow"); is working

share|improve this answer
Do you know why it's necessary to add html & body in the selector? – user751564 Apr 28 at 20:26
@user751564: It's not necessary, check stackoverflow.com/a/16430109/544283. – Esteban May 8 at 0:55
So you've added html to the selector because, although by default it's in body, it may be moved outside, to the html? – user751564 May 14 at 15:30

Try this to scroll on top

<script>
    $(window).scrollTop(0);
</script>
share|improve this answer

with window.scrollTo(0, 0); is very fast
so i tried the Mark Ursino example, but in Chrome nothing happens
and i found this

$('.showPeriodMsgPopup').click(function(){
    //window.scrollTo(0, 0);
    $('html').animate({scrollTop:0}, 'slow');//IE, FF
    $('body').animate({scrollTop:0}, 'slow');//chrome, don't know if safary works
    $('.popupPeriod').fadeIn(1000, function(){
        setTimeout(function(){$('.popupPeriod').fadeOut(2000);}, 3000);
    });
});

tested all 3 browsers and it works
i'm using blueprint css
this is when a client clicks "Book now" button and doesn't have the rental period selected, slowly moves to the top where the calendars are and opens a dialog div pointing to the 2 fields, after 3sec it fades

share|improve this answer
Thanks for pointing out you need to target both html and body. I was only doing it for html and wondering why it didn't work in Chrome. – Jared Mar 10 '11 at 20:42
The body animation does work in Safari, so I'm updating your answer accordingly. – Dave DuPlantis May 20 '11 at 19:27
8  
"Tested all 3 browsers"? Midori, LuaKit and Konqueror, right? :p – Anko May 21 '12 at 7:50
3  
Why not just do $('html', 'body').animate({scrollTop:0}) instead of adding two lines? – Matt Smith Aug 18 '12 at 2:53

$(document).scrollTop(0); also works.

share|improve this answer
Note that when you don't use Firefox this won't work. You get an error when only giving one argument (Error: Not enough arguments [nsIDOMWindow.scrollTo]). – Husky Nov 14 '12 at 13:57

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.

share|improve this answer

Try this

<script>
    $(window).scrollTop(100);
</script>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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