Created
October 21, 2010 16:41
-
-
Save Takazudo/638832 to your computer and use it in GitHub Desktop.
scrollTop
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
/* jQuery1.4.3 has bug? IE couldn't catch scrollTop using $.fn.scrollTop */ | |
function scrollTop(){ | |
return $(document).scrollTop() || document.documentElement.scrollTop || document.body.scrollTop || window.pageYOffset || 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment