web api instance property
SVGScriptElement: defer property
Limited availability
The defer property of the SVGScriptElement interface is a boolean value that controls how the script should be executed. For classic scripts, if the defer property is set to true, the external script will be executed after the document has been parsed, but before firing the DOMContentLoaded event. For module scripts, the defer property has no effect.
It reflects the defer attribute of the <script> element.
Value
A boolean.
Examples
Accessing the defer property
<svg xmlns="http://www.w3.org/2000/svg" width="400" height="200">
<script id="myScript" href="script.js" defer></script>
</svg>
const scriptElement = document.getElementById("myScript");
console.log(scriptElement.defer); // Output: true
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.