Last active
January 17, 2016 16:09
-
-
Save stereokai/b31a630b3a8ca00a04b2 to your computer and use it in GitHub Desktop.
Cross browser body scrollTop
This file contains hidden or 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
function getScrollTop() { | |
return (isBlink || isSafari || isEdge) ? document.body.scrollTop | |
: document.documentElement.scrollTop; | |
} | |
function setScrollTop(scrollTop) { | |
if (isBlink || isSafari || isEdge) { | |
document.body.scrollTop = scrollTop; | |
} else { | |
document.documentElement.scrollTop = scrollTop; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment