disabled
Summary
Prevents users from changing, clicking on, or submitting an element.
Applies to | [html/elements/input](/html/elements/input) |
---|
If an element is contained within a disabled (fieldset, the fieldset will override its disabled attribute.
The disabled attribute will prevent javascript click events on the element.
If the disabled element is present without a value (<input disabled>
) it will default to true. Other valid values are true
and false
.
Affects
When this is present a user cannot make the element active. Further, when the form is submitted, the input’s name and value will not be present. If you wish to submit the value, but make it so the user cannot manipulate the value see the readonly attribute.
Examples
This shows a basic form, with an email input and a submit button disabled.
<!doctype html>
<title>Disabled attribute demo</title>
<form role="form">
<label for="name">Name</label>
<input name="name">
<br>
<label for="email">Email</label>
<input type="email" name="email" disabled>
<br>
<input type="submit" disabled>
<input type="button" value="cancel">
</form>
Attributions
Microsoft Developer Network: [Windows Internet Explorer API reference Article]