Seokky
9/14/2017 - 5:05 PM

Smooth scroll to anchor width JQuery

Smooth scroll to anchor width JQuery

$(function(){

$('#goTop').on('click', function(e){
  $('html,body').stop().animate({ scrollTop: $('.header').offset().top }, 700);
  e.preventDefault();
});

});