Window 'scrollBy()' Example : Window Scroll « Javascript Objects « JavaScript DHTML





Window 'scrollBy()' Example

 
    
<html>
<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>

    
      
        
  










Related examples in the same category

1.Window 'scroll()' Example
2.Window 'scrollTo()' Example
3.Window 'scrollWidth' Example
4.Window 'scrollTop' Example
5.Window 'scrollLeft' Example
6.Window 'scrollHeight' Example
7.Move window by value
8.Move window to a position