Answers for "on click scroll to div in center page"

0

on click scroll to div in center page

<script>
  $("#contactbutton").click(function() {
    $('html, body').animate({
      scrollTop: $("#contactform").offset().top - $('#fixed-header').outerHeight()
    }, 500);
  });
</script>
Posted by: Guest on September-14-2020

Code answers related to "on click scroll to div in center page"

Browse Popular Code Answers by Language