Skip to content

Instantly share code, notes, and snippets.

@MSerj
Created October 30, 2017 19:28
Show Gist options
  • Save MSerj/7c01e39826ab2a329ae737a54edc46e0 to your computer and use it in GitHub Desktop.
Save MSerj/7c01e39826ab2a329ae737a54edc46e0 to your computer and use it in GitHub Desktop.
smooth scroll to anchor
$('a[href^="#"]').click(function(){
var target = $(this).attr('href');
$('html, body').animate({scrollTop: $(target).offset().top}, 500);
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment