JavaScript Programming JavaScript > Code Examples Window 'scrollBy()' Method Window 'scrollBy()' Method <html> <head> <title>Happy Codings :-) JavaScript Code Examples</title> </head> <body> <script language="JavaScript"> function function1(){ window.scrollBy(200,200); } </script> <input type="button" value="Scroll by (200,200)" onClick="function1();"> <div style="height:1000px;width:1400;background-color:blue"></div> </body> </html>