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>
<script language='javascript'>
function happycode(){
   alert('helo');
}
</script>
<body> 
<h1>Javascript call after page loaded</h1>
 
<script>
//call after page loaded
window.onload=happycode ; 
</script>
</body>
</html
This article was posted in Javascript category.