Advertisement
AdmiralNemo

window.onload

Jun 21st, 2011
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.36 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
  4. <head>
  5.   <meta charset="utf-8" />
  6.   <title>Test</title>
  7.   <script type="application/javascript">
  8.     /* <![CDATA[ */
  9.    window.onload = function(evt) {
  10.      alert('Loaded!');
  11.    }
  12.    /* ]]> */
  13.   </script>
  14. </head>
  15.  
  16. <body>
  17. <h1>Test</h1>
  18. <p>This is a test</p>
  19. </body>
  20.  
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement