Skip to content

Instantly share code, notes, and snippets.

@Farmatique
Last active July 18, 2019 10:28
Show Gist options
  • Save Farmatique/3581d41d5e82b238ed6072254b55f4a2 to your computer and use it in GitHub Desktop.
Save Farmatique/3581d41d5e82b238ed6072254b55f4a2 to your computer and use it in GitHub Desktop.
smooth scroll to section jquery v.3
$('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