Advertisement
shaashwato1308

JavaScript - window.onload

Dec 20th, 2014
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Method 1
  2. window.onload = function(){
  3.     // x functionality when window loads
  4. }
  5.  
  6. // Method 2
  7. function myFunc(){
  8.     // required functionality when window loads
  9. }
  10. window.onload = myFunc;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement