Last active
September 29, 2017 13:58
-
-
Save kovtunos/2e2dfd702e7e21eae2c241c5d19cb858 to your computer and use it in GitHub Desktop.
Smooth scroll to section id #jquery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.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