HTML async Attribute

❮ HTML Attributes

Example

<script src="demo/demo-async.js" async></script>

Meaning

The async attribute specifies that the browser might perform the fetch or execution of the script to be asynchronously from other activity in the page.

The meaning of this attribute versus the defer attribute with remote scripts in particular is quite unclear.

This is a boolean attribute, the presence of a boolean attribute on an element represents the true value, and the absence of the attribute represents the false value.

Notes:




Standard Syntax

<script async>



Browser Support




Status




Applies to:

The async attribute can be used on the following element:

Element Attribute
<script> async






Attribute Values

Value Description
async This is a boolean attribute, the presence of a boolean attribute on an element represents the true value, and the absence of the attribute represents the false value.
❮ HTML Attributes