Skip to content

Instantly share code, notes, and snippets.

@aseredenko
Last active August 29, 2015 14:25
Show Gist options
  • Save aseredenko/d0cf7e12407f7e5ab604 to your computer and use it in GitHub Desktop.
Save aseredenko/d0cf7e12407f7e5ab604 to your computer and use it in GitHub Desktop.
function getScrollTop(){
if(typeof pageYOffset!= 'undefined'){
//most browsers except IE before #9
return pageYOffset;
}
else{
var B= document.body; //IE 'quirks'
var D= document.documentElement; //IE with doctype
D= (D.clientHeight)? D: B;
return D.scrollTop;
}
}
$(window).scroll( function (){
console.log(getScrollTop())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment