Open In App
Related Articles

How to run a function when the page is loaded in JavaScript ?

Improve Article
Improve
Save Article
Save
Like Article
Like

A function can be executed when the page loaded successfully. This can be used for various purposes like checking for cookies or setting the correct version of the page depending on the user browser.

Method 1: Using onload method: The body of a webpage contains the actual content that is to be displayed. The onload event occurs whenever the element has finished loading. This can be used with the body element to execute a script after the webpage has completely loaded. The function that is required to be executed is given here.

Syntax:

<body onload="functionToBeExecuted">

Example:




<!DOCTYPE html>
<html>
  
<head>
    <title>
        How to run a function when the
        page is loaded in javascript ?
    </title>
</head>
  
<body onload="console.log('The Script will load now.')">
      
    <h1 style="color: green">GeeksforGeeks</h1>
      
    <b>
        How to run a function when the
        page is loaded in javascript ?
    </b>
      
    <p>
        The script has been executed. Check
        the console for the output.
    </p>
</body>
  
</html>

Output:
body-onload-output
Console Output:
body-onload-console

Method 2: The window object represents the browser window. The onload property processes load events after the element has finished loading. This is used with the window element to execute a script after the webpage has completely loaded. The function that is required to be executed is assigned as the handler function to this property. It will run the function as soon as the webpage has been loaded.

Syntax:




window.onload = function exampleFunction() {
  
    // Function to be executed
}

Example:




<!DOCTYPE html>
<html>
  
<head>
    <title>
        How to run a function when the
        page is loaded in javascript ? 
    </title>
</head>
  
<body>
    <h1 style="color: green">
        GeeksforGeeks
    </h1>
      
    <b>
        How to run a function when the
        page is loaded in javascript?
    </b>
      
    <p>
        The script has been executed. Check
        the console for the output.
    </p>
      
    <script>
        window.onload = function exampleFunction() {
            console.log('The Script will load now.');
        }
    </script>
</body>
  
</html>

Output:
window-onload-output
Console Output:
window-onload-console

JavaScript is best known for web page development but it is also used in a variety of non-browser environments. You can learn JavaScript from the ground up by following this JavaScript Tutorial and JavaScript Examples.


Last Updated : 21 Jul, 2021
Like Article
Save Article
Similar Reads
Related Tutorials