The SVGScriptElement interface corresponds to the SVG <script> element.
SVGScriptElement.asyncA boolean reflecting the async attribute of the given <script> element. It indicates whether the script should be executed asynchronously.
SVGScriptElement.crossOriginA string reflecting the crossorigin attribute of the given <script> element. It is a CORS settings attribute.
SVGScriptElement.defer A boolean reflecting the defer attribute of the given <script> element. It indicates whether the script should be executed after the document has been parsed.
SVGScriptElement.href Read onlyAn SVGAnimatedString corresponding to the href or xlink:href attribute of the given <script> element.
SVGScriptElement.type Read onlyA string corresponding to the type attribute of the given <script> element. A DOMException is raised with the code NO_MODIFICATION_ALLOWED_ERR on an attempt to change the value of a read-only attribute.
This interface doesn't implement any specific methods, but inherits methods from its parent interface, SVGElement.