Skip to content

Instantly share code, notes, and snippets.

@steppohub
Created December 23, 2014 03:45
Show Gist options
  • Save steppohub/4095838eaa71fcec6244 to your computer and use it in GitHub Desktop.
Save steppohub/4095838eaa71fcec6244 to your computer and use it in GitHub Desktop.
jquery scrolling goodness
jquery scrolling goodness
jQuery(".scroll").click(function() {
var target = jQuery(this).attr("href");
jQuery("html, body").animate({
scrollTop: jQuery(target).offset().top}, 1000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment