Skip to content

Instantly share code, notes, and snippets.

@Takazudo
Created October 21, 2010 16:41
Show Gist options
  • Save Takazudo/638832 to your computer and use it in GitHub Desktop.
Save Takazudo/638832 to your computer and use it in GitHub Desktop.
scrollTop
/* 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