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
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|---|
Basic support | ? | ? | ? | ? | ? | ? |
Feature | Android | Edge | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | ? | ? | ? | ? | ? | ? |
See also
- The HTML element implementing this interface:
<details>
.