SVGScriptElement: defer property

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.

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

html
<svg xmlns="http://www.w3.org/2000/svg" width="400" height="200">
  <script id="myScript" href="script.js" defer></script>
</svg>
js
const scriptElement = document.getElementById("myScript");
console.log(scriptElement.defer); // Output: true

Specifications

Specification
HTML
# dom-script-defer

Browser compatibility

See also