web api instance property
SVGScriptElement: async property
The async property of the SVGScriptElement interface is a boolean value that controls how the script should be executed. For classic scripts, if the async property is set to true, the external script will be fetched in parallel to parsing and evaluated as soon as it is available. For module scripts, if the async property is set to true, the script and all its dependencies will be fetched in parallel to parsing and evaluated as soon as they are available.
It reflects the async attribute of the <script> element.
Value
A boolean.
Examples
Accessing the async property
<svg xmlns="http://www.w3.org/2000/svg" width="400" height="200">
<script id="myScript" href="script.js" async></script>
</svg>
const scriptElement = document.getElementById("myScript");
console.log(scriptElement.async); // Output: true
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.