Answers for "jquery on click and scroll"

13

scroll to element jquery

$('html, body').animate({
  scrollTop: $("#grepperRocks").offset().top
});
Posted by: Guest on March-18-2020
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 "jquery on click and scroll"

Code answers related to "Javascript"

Browse Popular Code Answers by Language