Skip to content

Instantly share code, notes, and snippets.

@brettbartylla
Created September 6, 2017 01:58
Show Gist options
  • Save brettbartylla/8280db7d6c2082d073376855532e7066 to your computer and use it in GitHub Desktop.
Save brettbartylla/8280db7d6c2082d073376855532e7066 to your computer and use it in GitHub Desktop.
Snippet of jQuery that is triggered when the navigation link with corresponding id is clicked. This will result in scrolling to an anchor that is placed in the HTML.
//scroll from nav to anchor on page
$("#navLink").click(function() {
$('html, body').animate({
scrollTop: $("#anchor").offset().top
}, 1200);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment