up vote 13 down vote favorite
5
share [g+] share [fb]

I want to animate a scroll to the bottom of the viewport with jQuery. Is there a plugin available which isn't overkill (i.e. without a huge feature set for this small task);

Is there a plugin available or a way to do this natively with jQuery?

link|improve this question

feedback

5 Answers

up vote 20 down vote accepted

jQuery makes things like this so trivial that you just dont need a plugin. Example:

var x = 250; //insert your own formula to calculate where you want to scroll to in px
var t = 500; //arbitrary time in ms
$("html,body").animate({ scrollTop: x }, t);

Instead of html,body you can put any element which scrolls, like a div. t is the time in ms over which the animation will run and x is your position to scroll to in px. Note that this works with scrollLeft also but not scrollRight or scrollBottom (not a limitation of jQuery but JavaScript).

link|improve this answer
2  
$("#log-output").animate({scrollTop: $("#log-output").height()}, 250); worked great for automagically scrolling to the bottom of a textarea. Thanks! – leek Sep 2 '10 at 6:25
$("html,body").animate({ scrollTop: $('body').css('height') }, 0); scrolls down to the bottom of the page. – Christian Davén Aug 26 '11 at 13:42
feedback

you can always do the following line to scroll an element to the bottom

$("body").attr({ scrollTop: $("body").attr("scrollHeight") });
link|improve this answer
feedback

Check the jQuery.ScrollTo plugin, you can scroll to determined positions (fixed or absolute), using selectors, DOM elements, and more...

Give a look to the demos...

link|improve this answer
feedback

To elaborate on the answers from Darko Z and CMS, here is what I used to animate scrolling to a specific element:

var target = $('#elem');
$('html,body').animate({scrollTop: target.offset().top}, 500);
link|improve this answer
It works fine for me like this. Thanks :) – Natim Oct 25 '10 at 11:55
feedback

You can look into the scrollTop function. You can create an animation using it and some timer.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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