'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