Answers for "scroll top to specific div"

1

html scroll div to top

var myDiv = document.getElementById('containerDiv');
myDiv.innerHTML = variableLongText;
myDiv.scrollTop = 0;
Posted by: Guest on June-07-2020
-1

scroll to specific div

$(window).scroll(function() {
    $('html, body').animate({
        scrollTop: $("#myDiv").offset().top
    }, 2000);
});
Posted by: Guest on March-24-2020

Browse Popular Code Answers by Language