Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. body {
  6. height: 5000px;
  7. }
  8. </style>
  9. </head>
  10. <body onload="scroll()">
  11.  
  12. <script>
  13. function scroll() {
  14. // scrollTo(xPosition, yPosition)
  15. window.scrollTo(0, 1000);
  16. }
  17. </script>
  18. </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement