Firefox Tomorrow

web api instance property

SVGScriptElement: type property

View on MDN ↗

The type read-only property of the SVGScriptElement interface reflects the type attribute of the given <script> element.

Value

A string.

Examples

Accessing the type property

<svg xmlns="http://www.w3.org/2000/svg" width="400" height="200">
  <script id="myScript" href="script.js" type="text/javascript"></script>
</svg>
const scriptElement = document.getElementById("myScript");

// Access the type property
console.log(scriptElement.type); // Output: "text/javascript"

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.