Skip to content

Instantly share code, notes, and snippets.

@SteAllan
Created January 21, 2014 08:28
Show Gist options
  • Save SteAllan/8536274 to your computer and use it in GitHub Desktop.
Save SteAllan/8536274 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;
}
}
alert(getScrollTop());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment