$(function() {  $('a[href*="#"]').on('click', function(e) {    var target = $(this.hash);    if (target.length) {      e.preventDefault();      $('html, body').animate({        scrollTop: target.offset().top      }, 1000); // 1000ms = 1 second scroll speed    }  });});