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>

















??????, ?????? ??????, ??????????? ??? ??????? ?????????? ????? ?????????. (?? ? ????? ??????, ??????? :))
Very simple - thanks
ya sometime it’s just we think too much