Skip to content

Instantly share code, notes, and snippets.

@maxdenaro
Created August 4, 2019 17:34
Show Gist options
  • Select an option

  • Save maxdenaro/a131e4a6aadf39d60a4a54d89b25db87 to your computer and use it in GitHub Desktop.

Select an option

Save maxdenaro/a131e4a6aadf39d60a4a54d89b25db87 to your computer and use it in GitHub Desktop.
Scroll to anchors
<ul>
<li><a href="#one"></a></li>
<li><a href="#two"></a></li>
<li><a href="#three"></a></li>
</ul>
<section id="one"></section>
<section id="two"></section>
<section id="three"></section>
$('.anchor').click((e) => {
e.preventDefault();
let href = $(e.currentTarget).attr('href');
let top = $(href).offset().top;
$('body,html').animate({
scrollTop: top,
}, 700);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment