script.js 215 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 jQuery(document).ready(function($){ $('a.scroll-link').click(function(e){ e.preventDefault(); $id = $(this).attr('href'); $('body,html').animate({ scrollTop: $($id).offset().top -20 }, 750); }); });