Firefox Tomorrow

web api instance property

HTMLScriptElement: blocking property

View on MDN ↗

The read-only blocking property of the HTMLScriptElement returns a live DOMTokenList object containing the operations that should be blocked on the fetching of an external resource. It reflects the <script> element’s blocking content attribute.

Value

A live DOMTokenList object.

Although the blocking property itself is read-only in the sense that you can’t replace the DOMTokenList object, you can still assign to the blocking property directly, which is equivalent to assigning to its value property. You can also modify the DOMTokenList object using the add(), remove(), replace(), and toggle() methods.

Examples

<script id="el" async blocking="render"></script>
const el = document.getElementById("el");
console.log(el.blocking); // Output: "render"

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also