Skip to content

Instantly share code, notes, and snippets.

@Donmclean
Created July 22, 2016 07:59
Show Gist options
  • Save Donmclean/d6db01fdc79dc024d2335bdda5b16ca8 to your computer and use it in GitHub Desktop.
Save Donmclean/d6db01fdc79dc024d2335bdda5b16ca8 to your computer and use it in GitHub Desktop.
Smooth Scroll To Top
angular.element('body').animate({
scrollTop: 0
}, 800);
// OR
$('body').animate({
scrollTop: 0
}, 800);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment