scroll to bottom of 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);
});

Example 3: scroll to bottom of div javascript

// if using jQuery
function scrollSmoothToBottom (id) {
   var div = document.getElementById(id);
   $('#' + id).animate({
      scrollTop: div.scrollHeight - div.clientHeight
   }, 500);
}

//pure JS
function scrollToBottom (id) {
   var div = document.getElementById(id);
   div.scrollTop = div.scrollHeight - div.clientHeight;
}