Skip to content

Instantly share code, notes, and snippets.

@jaredkc
Created February 28, 2013 20:16
Show Gist options
  • Save jaredkc/5059759 to your computer and use it in GitHub Desktop.
Save jaredkc/5059759 to your computer and use it in GitHub Desktop.
Scroll to jQuery
/**
* Smooth Scrolling Anchor Links
* http://www.sycha.com/jquery-smooth-scrolling-internal-anchor-links
*/
$(".scroll").click(function(event){
event.preventDefault();
$('html,body').animate({scrollTop:$(this.hash).offset().top}, 500);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment