Skip to content

Instantly share code, notes, and snippets.

@completejavascript
Created February 23, 2018 15:53
Show Gist options
  • Save completejavascript/d800f6b3fbf1b0aad4674797fa5b6d04 to your computer and use it in GitHub Desktop.
Save completejavascript/d800f6b3fbf1b0aad4674797fa5b6d04 to your computer and use it in GitHub Desktop.
Smooth scrolling using jQuery
// Smooth scrolling
$("a[href*='#']:not([href='#'])").click(function () {
if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '')
|| location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top
}, 1000);
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment