This page is Not Ready

Notice: The WebPlatform project, supported by various stewards between 2012 and 2015, has been discontinued. This site is now available on github.

indeterminate

Property of dom/HTMLElementdom/HTMLElement

Syntax

var result = element.indeterminate;
element.indeterminate = value;

Notes

Remarks

The indeterminate property can be used to indicate whether the user has acted on a control. For example, setting the indeterminate to true causes the check box to appear checked and dimmed, indicating an indeterminate state. The value of the indeterminate property acts independently of the value of the checked property. Creating an indeterminate state is different from disabling the control. Consequently, a check box in the indeterminate state can still receive the focus. When the user clicks an indeterminate control, the indeterminate state turns off and the checked state of the check box toggles.

Syntax

See also

Related pages

  • input type=checkbox

Attributions