Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<html>
    <body>
        <style>
            body{
                padding:0;
                margin:0;
            }
            div{
                border:50px solid #1065e6;
                padding:50px;
                margin:50px;
            }
            #target{
                width:100px;
                height:2000px;
            }
        </style>
        <input type="button" id="scrollBtn" value="scroll(0, 1000)" />
        <script>
            document.getElementById('scrollBtn').addEventListener('click', function(){
                window.scrollTo(0, 1000);
            })
        </script>
        <div>
            <div id="target">
                Coding
            </div>
        </div>
        
    </body>
</html>
Output

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

Dismiss x
public
Bin info
egoingpro
0viewers