Skip to content

Instantly share code, notes, and snippets.

@Ivanopalas
Created September 8, 2015 05:26
Show Gist options
  • Save Ivanopalas/270732d4974f7c879d48 to your computer and use it in GitHub Desktop.
Save Ivanopalas/270732d4974f7c879d48 to your computer and use it in GitHub Desktop.
$(function() {
scrolllinks = $("a[href^=#]"),
scrolllinks.click(function(e){
var shref = $(this).attr("href"),
offTop = shref === "#" ? 0 : $(shref).offset().top;
$('html, body').stop().animate({
scrollTop: offTop
}, 500);
e.preventDefault();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment