Skip to content

Instantly share code, notes, and snippets.

View roatnek's full-sized avatar

Kentaro Tanaka roatnek

View GitHub Profile
@roatnek
roatnek / scrollDocument.js
Last active March 13, 2017 07:07
No more `$('html, body').animate()`
var scrolling_elem = document.scrollingElement;
$(scrolling_elem)
.filter(':not(:animated)')
.animate({scrollTop: 0}, {duration: 500, easing: 'swing'});