Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
  <title>JS Bin</title>
</head>
<body>
  <div class="wrapper">
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
    <h3>fff</h3>
  </div>
  <script>
    
  </script>
</body>
</html>
 
.wrapper {
  border: 1px solid red;
}
 
const wrapper = document.querySelector('.wrapper')
const scrollHeight = wrapper.scrollHeight
const body = document.querySelector('body')
const bodyHeight = body.clientHeight
console.log('wrapper-height', wrapper.innerHeight)
console.log('wrapper-bodyHeight', bodyHeight)
console.log('body-scrollHeight', scrollHeight)
window.addEventListener('scroll', function (e) {
  console.log('xxxxxxxxxx')
  console.log('e.target.clientY', e.target.offsetY)
  console.log('clientHeight', window.document.body.clientHeight)
  console.log('offsetHeight', window.document.body.offsetHeight)
  console.log('scrollTop', window.document.documentElement.scrollTop)
  console.log('scrollHeight', window.document.body.scrollHeight)
})
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers