script.js 188 Bytes Raw Blame History Permalink 1 2 3 4 5 6 $(function() { $('a[href*=#]').on('click', function(e) { e.preventDefault(); $('html, body').animate({ scrollTop: $($(this).attr('href')).offset().top}, 500, 'linear'); }); });