execute function on load page javascript code example

Example 1: how to call a function as soon as a page loads javascript

<body onload="yourFunction()"> </body>

Example 2: call a function when page is loaded

<script src="js/jquery-1.11.0.min.js" type="text/javascript"></script>
<script type="text/javascript">

    $(document).ready(function () {
        yourFunction();
    });
    function yourFunction(){
      //some code
    }
</script>

Example 3: javascript execute code on page load

<html>
 
  <body onload="loaded();"></body>
  <script>
    function loaded() {
      alert('Page is loaded');
    }
 
  </script>
 
</html>

Tags:

Html Example