Skip to content

Instantly share code, notes, and snippets.

@jackilyn
Created July 2, 2012 19:24
Show Gist options
  • Select an option

  • Save jackilyn/3035120 to your computer and use it in GitHub Desktop.

Select an option

Save jackilyn/3035120 to your computer and use it in GitHub Desktop.
Back to Top Animated Scroll
$(function() {
$('#back-top a').click(function () {
$('body,html').animate({
scrollTop: 0
}, 800);
return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment