Skip to content

Instantly share code, notes, and snippets.

@shanecarmody
Last active November 14, 2017 13:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shanecarmody/5a5dd6742ff00bb76ae8 to your computer and use it in GitHub Desktop.
Save shanecarmody/5a5dd6742ff00bb76ae8 to your computer and use it in GitHub Desktop.
Use an anchor tags href value as the scrollTo target
// Smooth scrolling to anchors
//
// This is a slightly modified version of the script provided by CSS Tricks
// https://css-tricks.com/snippets/jquery/smooth-scrolling/
(function ($) {
// Select all links with hashes
$('a[href*="#"]')
// Remove links that don't actually link to anything
.not('[href="#"]')
.not('[href="#0"]')
.click(function (event) {
// On-page links
if (
location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '')
&&
location.hostname == this.hostname
) {
// Figure out element to scroll to
let target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
// Does a scroll target exist?
if (target.length) {
// Only prevent default if animation is actually gonna happen
event.preventDefault();
$('html, body').animate({
// Subtract 40 (the height of our sticky header)
scrollTop: target.offset().top
}, 1000);
}
}
});
}(jQuery));
@shanecarmody
Copy link
Author

Gist updated so that the functionality no longer relies on a jQuery plugin.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment