Firefox Tomorrow

web api instance property

HTMLIFrameElement: privateToken property

View on MDN ↗

Limited availability

The privateToken property of the HTMLIFrameElement interface returns a string representation of an options object representing a private state token operation; this object has the same structure as the RequestInit dictionary’s privateToken property.

This attribute mirrors the content of the associated <iframe> element’s privateToken attribute.

Value

A string.

Examples

<iframe id="el" privateToken="{version: 1,operation: 'token-request'}">
</iframe>
const el = document.getElementById("el");
console.log(el.privateToken);
// Logs "{version: 1,operation: 'token-request'}"

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also