Skip to content

Instantly share code, notes, and snippets.

@actionm
Created March 1, 2017 19:40
Show Gist options
  • Save actionm/c49790290e33fc42e2aa0d724dbfc8c5 to your computer and use it in GitHub Desktop.
Save actionm/c49790290e33fc42e2aa0d724dbfc8c5 to your computer and use it in GitHub Desktop.
$(function() {
smoothScroll(300);
});
function smoothScroll(duration) {
$('a[href^="#"]').on("click", function(event) {
var target = $($(this).attr("href"));
if (target.length) {
event.preventDefault();
$("html, body").animate({
scrollTop: target.offset().top
}, duration);
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment