scroll to bottom of a div jquery code example
Example 1: jquery scroll to top of div
$('#DIV_ID').scrollTop(0);
Example 2: jquery scroll to bottom
$(window).load(function() {
$("html, body").animate({ scrollTop: $(document).height() }, 1000);
});