Scrolling Progress Bar
问题 What I'm trying to do is implement a progress bar to indicate how close one is to the end of the page in vanilla JavaScript. However, I'm running into a few issues. First of all, although the body element is being scrolled, document.body.scrollTop always returns 0 . I've sorted this out by using document.scrollingElement.scrollTop . It's been a while since I last implemented a feature like this, so I took to Stack Overflow and found this thread, which jogged my memory a bit. From what I