Window 'scroll()' Example : Window Scroll : Javascript Objects : JavaScript DHTML examples (example source code) Organized by topic

JavaScript DHTML
C++
PHP
JavaScript DHTML Home »  Javascript Objects   » [  Window Scroll  ]   
 



Window 'scroll()' Example

Please note that some example is only working under IE or Firefox.

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

    
      
      
Related examples in the same category
1.  Window 'scrollTo()' Example
2.  Window 'scrollBy()' Example
3.  Window 'scrollWidth' Example
4.  Window 'scrollTop' Example
5.  Window 'scrollLeft' Example
6.  Window 'scrollHeight' Example
























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