Answers for "scroll to section on click jquery"

0

how to add scroll to div onclick

$("button").click(function() {
    $('html,body').animate({
        scrollTop: $(".second").offset().top},
        'slow');
});
Posted by: Guest on November-22-2020

Code answers related to "scroll to section on click jquery"

Browse Popular Code Answers by Language