Usually we can call a function during page on load with following two methods.

<body onload="happycode() ;">

or

<script>
window.onload=happycode ;
</script>

But how we can call a javascript function after a page load? I solved it by using a very simple method, it did exactly what i want and call after page and content loaded. Just add an onload function at the end of the body.

<html>
....
<body>
...
 
<script>
//call after page loaded
window.onload=happycode ; 
</script>
</body>
</html>

Share and Enjoy:
  • Digg
  • del.icio.us
  • Facebook
  • StumbleUpon
  • SphereIt
  • Reddit
  • Google
  • YahooMyWeb
  • Technorati
  • Spurl
  • Sphinn
  • Mixx
  • connotea
  • BlinkList