Skip to content

Instantly share code, notes, and snippets.

@killa-kyle
Created July 15, 2015 17:53
Show Gist options
  • Save killa-kyle/a31cbe357b392afd9895 to your computer and use it in GitHub Desktop.
Save killa-kyle/a31cbe357b392afd9895 to your computer and use it in GitHub Desktop.
Smooth scroll
$('a[href^="#"]').click(function(event) {
var id = $(this).attr("href");
var target = $(id).offset().top;
$('html, body').animate({scrollTop:target - 50}, 500);
event.preventDefault();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment