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