Skip to content

Instantly share code, notes, and snippets.

@sDLme
Last active April 5, 2019 14:19
Show Gist options
  • Save sDLme/f4a86c5e5bfcf98d890967c3aa0512c2 to your computer and use it in GitHub Desktop.
Save sDLme/f4a86c5e5bfcf98d890967c3aa0512c2 to your computer and use it in GitHub Desktop.
easy anchor scroll.
<a class="header-button" href="#form>
<section id="form"></section>
// scroll
$(".header-button").on("click", function (event) {
event.preventDefault();
var id = $(this).attr('href'),
top = $(id).offset().top;
$('body,html').animate({scrollTop: top}, 1500);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment