Skip to content

Instantly share code, notes, and snippets.

@kovtunos
Last active September 29, 2017 13:58
Show Gist options
  • Save kovtunos/2e2dfd702e7e21eae2c241c5d19cb858 to your computer and use it in GitHub Desktop.
Save kovtunos/2e2dfd702e7e21eae2c241c5d19cb858 to your computer and use it in GitHub Desktop.
Smooth scroll to section id #jquery
$('.scroll').on('click', 'a', function(event) {
event.preventDefault();
let id = $(this).attr('href');
let top = $(id).offset().top;
$('body, html').animate({
scrollTop: top
}, 500);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment