Created
July 1, 2014 14:29
-
-
Save HektorW/5330424993ce939c66ec to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$("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