Skip to content

Instantly share code, notes, and snippets.

@searleb
Created December 7, 2015 04:21
Show Gist options
  • Save searleb/9d5643e0e44e6f23f2f7 to your computer and use it in GitHub Desktop.
Save searleb/9d5643e0e44e6f23f2f7 to your computer and use it in GitHub Desktop.
jQuery page scrolling - on click to an #
$(".scroll").click(function(event) {
event.preventDefault();
var scrollToId = $(this).attr('href');
$("html, body").animate({ scrollTop: $(scrollToId).offset().top }, 400);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment