$('#scrollable').stop().animate ({ scrollTop: $('#scrollable')[0].scrollHeight }); code example
Example: javascript scroll to bottom of div
//scroll to the bottom of "#myDiv"
var myDiv = document.getElementById("myDiv");
myDiv.scrollTop = myDiv.scrollHeight;