Advertisement
lalatino

scrolltop example

Jul 9th, 2012
556
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.47 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
  4. <script type="text/javascript">
  5.  
  6. alert(document.body); // null
  7.  
  8. for (var i=1; i<200; i++) {
  9.     document.writeln('<div>'+i+'</div>');
  10. }
  11.  
  12. alert(document.body); // now: object HTMLBodyElement
  13.  
  14. $(window).scrollTop(50);
  15.  
  16. $(document).ready(function(){
  17.     alert(document.body+' ready'); // object HTMLBodyElement
  18. });
  19.  
  20. </script>
  21. </head>
  22. <body>
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement