HTMLDetailsElement
translation in progress
The HTMLDetailsElement
interface provides special properties (beyond the regular HTMLElement
interface it also has available to it by inheritance) for manipulating <details>
elements.
Properties
Inherits properties from its parent, HTMLElement
.
HTMLDetailsElement.open
- Is a
boolean
reflecting theopen
HTML attribute, indicating whether or not the element’s contents (not counting the<summary>
) is to be shown to the user.
Methods
No specific method; inherits methods from its parent, HTMLElement
.
Specifications
Browser compatibility
BCD tables only load in the browser
See also
- The HTML element implementing this interface:
<details>