HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> body{ height:1500px; } </style> </head> <body> <p>Click on the button to scroll this document</p> <button onclick="myFunction()">Click Me</button> <script> function myFunction(){ document.scrollingElement.scrollTop = 150; } </script> </body> </html>
OUTPUT
×

Save as Private