Skip to content

Instantly share code, notes, and snippets.

@yellowberri-snippets
Last active December 30, 2015 01:59
Show Gist options
  • Select an option

  • Save yellowberri-snippets/7759791 to your computer and use it in GitHub Desktop.

Select an option

Save yellowberri-snippets/7759791 to your computer and use it in GitHub Desktop.
JS: Animated Scroll
function animateTo(location, speed) {
$('html, body').animate({
scrollTop: location
}, speed);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment