JavaScript Reference/Javascript Methods/scrollBy
"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>
"scrollBy()" is applied to
+----------------+--------------------------------------------------------------+
| Applied_To |window |
+----------------+--------------------------------------------------------------+
"scrollBy()" Syntax, Parameters and Note
Note:
Scrolls the window by the specified values.
Syntax:
window.scrollBy(param1, param2)
Parameters:
param1 Required; the horizontal scroll amount in pixels.
param2 Required; the vertical scroll amount in pixels.