Back to Content

HTMLIFrameElement: privateToken property

files/en-us/web/api/htmliframeelement/privatetoken/index.md

latest1007 B
Original Source

{{APIRef("HTML DOM")}}{{SeeCompatTable}}

The privateToken property of the {{domxref("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

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

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also