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">
  <title>Screen Info</title>
</head>
<body>
    <pre id="info"></div>
    <script>
        var info = document.getElementById('info');
        setInterval(function() {
            info.innerText = 
                'screenX=' + window.screenX + 
                '\nscreenY=' + window.screenY + 
                '\navailWidth=' + screen.availWidth +
                '\navailHeight=' + screen.availHeight;
        }, 100);
    </script>
</body>
</html>
Output 300px

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

Dismiss x
public
Bin info
darkthreadpro
0viewers