Skip to content

Instantly share code, notes, and snippets.

@marcobiedermann
Created June 16, 2016 16:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcobiedermann/add0fa61b69235e409f1be4268612564 to your computer and use it in GitHub Desktop.
Save marcobiedermann/add0fa61b69235e409f1be4268612564 to your computer and use it in GitHub Desktop.
jQuery ScrollTo Function
(function($) {
$('.scroll-to').on('click', function(event) {
event.preventDefault();
$('html, body').animate({
scrollTop: $($.attr(this, 'href')).offset().top
}, 800);
return false;
});
}(jQuery));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment