For a DIV with scrollbars, is it possible to make that div scroll all the way to the bottom, using JQuery?
How would you do tha开发者_开发技巧t using JQuery?
Try manipulating the scrollHeight:
http://kisdigital.wordpress.com/2009/11/12/using-jquery-to-scroll-to-the-bottom-of-a-div/
$("#myDiv").attr({ scrollTop: $("#myDiv").attr("scrollHeight") });
Or if you want it animated:
$("#myDiv").animate({ scrollTop: $("#myDiv").attr("scrollHeight") }, 3000);
I'd use the jQuery ScrollTo pluging
$('div').scrollTo(...);//all divs
http://flesler.blogspot.com/2007/10/jqueryscrollto.html
精彩评论