jQuery anchor smooth scroll #js #jquery
$('a[href*=\\#]').click(function(){ $('html, body').animate({ scrollTop: $( $(this).attr('href') ).offset().top - 1 }, 500); return false; });