jquery scroll to top of div

JavaScript
$("#button").click(function() {
    $([document.documentElement, document.body]).animate({
        scrollTop: $("#elementtoScrollToID").offset().top
    }, 2000);
});$('#DIV_ID').scrollTop(0);window.scrollTo({top: 0, behavior: 'smooth'});
Source

Also in JavaScript: