Open In App
Related Articles

HTML DOM Script async Property

Improve Article
Improve
Save Article
Save
Like Article
Like

The DOM Script async property is used to set or return whether a script should be executed asynchronously or not. This property is used to reflect the async attribute. This attribute only works for the external script. There are the following ways that the external script could be executed:

  • The script will be executed asynchronously with the rest of the page when async is present. This means while the page continues the parsing the time script will be executed.
  • If the defer is present but async is not present then the script will be executed when the page has finished parsing.
  • If both, async or defer is not present then the script is fetched and will execute immediately, even before the browser continues parsing the page.

Syntax: 

  • It returns the async property.
scriptObject.async
  • It is used to set the async property.
scriptObject.async = true|false

Property Values: It contains a Boolean value which specifies that whether the script should be executed asynchronously as soon as it is available, or not.

  • True: It specifies that the script should be executed asynchronously.
  • false: It specifies that the script will not be executed asynchronously. By default, it is set to false.

Return Value: It returns a Boolean value that specifies whether the script should be executed asynchronously or not.

Example: In this example, we will use the DOM Script async Property.

HTML




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM Script async Property
    </title>
</head>
 
<body style="text-align:center;">
    <h1 style="color:green;">
        GeeksforGeeks
    </h1>
    <h2>
          DOM Script async Property
      </h2>   
    <p id="p1">Hello World!</p>
 
    <script id="myScript"
            src="demo_async.js"
            async>
    </script>
 
    <!-- Button that trigger the Function -->
    <button onclick="myFunction()">
          Click me!
      </button>
    <p id="demo"></p>
 
    <!-- Main Function -->
    <script>
        function myFunction() {
            let x =
            document.getElementById("myScript").async;
            document.getElementById("demo").innerHTML = x;
        }
    </script>
</body>
 
</html>


Output:

 

Supported Browsers: The browser supported by HTML DOM Script async property are listed below:

  • Google Chrome
  • Internet Explorer 10.0
  • Firefox
  • Safari
  • Opera

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 20 Jun, 2023
Like Article
Save Article
Similar Reads
Related Tutorials