Skip to content

Instantly share code, notes, and snippets.

@HektorW
Created July 1, 2014 14:29
Show Gist options
  • Save HektorW/5330424993ce939c66ec to your computer and use it in GitHub Desktop.
Save HektorW/5330424993ce939c66ec to your computer and use it in GitHub Desktop.
$("html, body").animate({ scrollTop: 0 }, {
duration: 250,
complete: function() {
var elem = document.documentElement;
// setting a padding top on document element will force repaint, but not show any visual effect
elem.style.paddingTop = '1px';
setTimeout(function() {
elem.style.paddingTop = '0';
}, 0);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment