Skip to content

Instantly share code, notes, and snippets.

@mpr0xy
Created November 29, 2023 03:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mpr0xy/1a4dda5be4c4185565eb7bae0993f667 to your computer and use it in GitHub Desktop.
Save mpr0xy/1a4dda5be4c4185565eb7bae0993f667 to your computer and use it in GitHub Desktop.
latest7daysMasteredWordsCountByDay
function getScrollTop() {
var scroll_top = 0
if (document.documentElement && document.documentElement.scrollTop) {
scroll_top = document.documentElement.scrollTop
} else if (document.body) {
scroll_top = document.body.scrollTop
}
return scroll_top
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment