Skip to content

Instantly share code, notes, and snippets.

@iksi
Created July 13, 2016 21:13
Show Gist options
  • Save iksi/442396e54fdfca19767b1d5bd72cf7b5 to your computer and use it in GitHub Desktop.
Save iksi/442396e54fdfca19767b1d5bd72cf7b5 to your computer and use it in GitHub Desktop.
var getScrollPosition = function () {
return {
x: Math.max(window.pageXOffset, document.documentElement.scrollLeft, document.body.scrollLeft),
y: Math.max(window.pageYOffset, document.documentElement.scrollTop, document.body.scrollTop)
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment