Last active
July 18, 2019 10:28
-
-
Save Farmatique/3581d41d5e82b238ed6072254b55f4a2 to your computer and use it in GitHub Desktop.
smooth scroll to section jquery v.3
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
$('a[href*="#"]').on('click', function(e) { | |
e.preventDefault() | |
$('html, body').animate( | |
{ | |
scrollTop: $($(this).attr('href')).offset().top, | |
}, | |
500, | |
'linear' | |
) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment