'scrollTo()' Example : scrollTo : Javascript Methods : JavaScript Reference examples (example source code) Organized by topic

JavaScript Reference
C++
PHP


JavaScript Reference  »  Javascript Methods   » [  scrollTo  ]   
 



'scrollTo()' Example

    
<html>
<body>
<script language="JavaScript">
function function1(){
    window.scrollTo(200,200);
}
function function2(){
    window.scroll(200,200);
}
</script>
<input type="button" value="Scroll to (200,200)" onClick="function1();">
<input type="button" value="Scroll(200,200)" onClick="function2();">
<div style="height:1000;width:1500;background-color:blue;"></div>
</body>
</html>

    
      
      
Related examples in the same category
1.  'scrollTo()' Syntax, Parameters and Note
2.  'scrollTo()' is applied to
























Home| Contact Us
Copyright 2003 - 07 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.