Skip to content

Instantly share code, notes, and snippets.

@koentjuh1
Last active August 3, 2016 17:15
Show Gist options
  • Save koentjuh1/231047dd21199f9f0166 to your computer and use it in GitHub Desktop.
Save koentjuh1/231047dd21199f9f0166 to your computer and use it in GitHub Desktop.
Smooth scrolling
$('.back-to-top').on('click', function (e) {
e.preventDefault();
$('html,body').animate({
scrollTop: 0
}, 700);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment