Skip to content

Instantly share code, notes, and snippets.

@vladanyes
Created March 19, 2018 06:40
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 vladanyes/a9eba215f2e3f9d251d1ccf0c67d8375 to your computer and use it in GitHub Desktop.
Save vladanyes/a9eba215f2e3f9d251d1ccf0c67d8375 to your computer and use it in GitHub Desktop.
var $link = $('ul.header-nav li:first-child a');
$link.on('click', function(e) {
e.preventDefault();
$('html, body').animate({ scrollTop: $('#about').offset().top }, 1000);
console.log($('#about').offset().top);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment