Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.26 KB | None | 0 0
  1. <html>
  2.   <head>
  3.     <script language="javascript" type="text/javascript">
  4. function init()
  5. {
  6.     alert("Blah !");
  7. }
  8. //window.onload=init; // solution 1
  9.     </script>
  10.   </head>
  11.   <body onload="//init()"> <!-- solution 2 -->
  12.     <p>Oh yes!</p>
  13.   </body>
  14. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement