Skip to content

Instantly share code, notes, and snippets.

@roatnek
Last active March 13, 2017 07:07
Show Gist options
  • Save roatnek/ded902f204d7b2888964970ce4c3bd3a to your computer and use it in GitHub Desktop.
Save roatnek/ded902f204d7b2888964970ce4c3bd3a to your computer and use it in GitHub Desktop.
No more `$('html, body').animate()`
var scrolling_elem = document.scrollingElement;
$(scrolling_elem)
.filter(':not(:animated)')
.animate({scrollTop: 0}, {duration: 500, easing: 'swing'});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment