Saggot
1/15/2019 - 6:57 PM

Scroll height

Scroll height for any browser to avoid incompatibility and browser bugs

let scrollHeight = Math.max(
  document.body.scrollHeight, document.documentElement.scrollHeight,
  document.body.offsetHeight, document.documentElement.offsetHeight,
  document.body.clientHeight, document.documentElement.clientHeight
);