Skip to content

Instantly share code, notes, and snippets.

@techjewel
Created October 25, 2013 06:29
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 techjewel/7150247 to your computer and use it in GitHub Desktop.
Save techjewel/7150247 to your computer and use it in GitHub Desktop.
Smooth Scrolling with jQuery
<script type="text/javascript">
$('a').click(function(){
$('html, body').animate({
scrollTop: $( $.attr(this, 'href') ).offset().top
}, 800);
return false;
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment