Gets the value that indicates whether the user can interact with the object.
Syntax
| JavaScript | |
|---|
Property values
Type: Boolean
Examples
The following example shows how to use the isDisabled property to determine whether an object is disabled.
<head>
<script type="text/javascript">
function chgInput() {
currentState = oTextInput.isDisabled;
newState = !currentState;
oTextInput.disabled = newState;
oCurrentValue.innerText = newState;
newState==true ? oBtn.innerText="Enable" : oBtn.innerText="Disable"
}
</script>
</head>
<body onload="oCurrentValue.innerText = oTextInput.isDisabled;">
<p>Click the button to enable or disable the <b>input</b>.</p>
<p>
<input id="oBtn" type="button" value="Disable" onclick="chgInput()" />
</p>
<p><input id="oTextInput" valie="This is some text." /></p>
Input disabled: <spam id="oCurrentValue"></span>
</body>
See also
- a
- abbr
- address
- area
- article
- aside
- b
- base
- bdo
- blockQuote
- body
- br
- button
- caption
- cite
- code
- col
- colGroup
- comment
- custom
- dd
- del
- div
- dl
- dt
- em
- embed
- fieldSet
- figcaption
- figure
- footer
- form
- head
- header
- hgroup
- hn
- hr
- html
- i
- iframe
- img
- input type=button
- input type=checkbox
- input type=file
- input type=hidden
- input type=image
- input type=password
- input type=radio
- input type=reset
- input type=submit
- input type=text
- ins
- kbd
- label
- legend
- li
- link
- map
- mark
- nav
- object
- ol
- option
- p
- pre
- q
- rt
- ruby
- s
- samp
- script
- section
- select
- small
- span
- strong
- sub
- sup
- table
- tBody
- td
- textArea
- tFoot
- th
- tHead
- title
- tr
- u
- ul
- var
Build date: 11/28/2012