Name
HTMLTextAreaElement — a <textarea> element in an HTML form DOM Level 1 HTML
Availability
Inherits from/Overrides
Node → Element → HTMLElement → HTMLTextAreaElement
Properties
-
String accessKey A keyboard shortcut (a single character) that the web browser can use to transfer keyboard focus to this element. Mirrors the
accesskeyattribute.-
long cols The width of this element in character columns. Mirrors the
colsattribute.-
String defaultValue The initial content of the text area. When the form is reset, the text area is restored to this value. Setting this property changes the displayed text in the text area.
-
boolean disabled If
true, this element is disabled and the user cannot interact with it. Mirrors thedisabledattribute.-
readonlyHTMLFormElementform The HTMLFormElement that represents the
<form>element containing this text area, ornullif this element is not inside a form.-
String name The name of this
<textarea>element, as specified by thenameattribute.-
boolean readOnly If
true, this element is read-only and the user cannot edit any of the displayed text. Mirrors thereadonlyattribute.-
long rows The height of the text area in text rows. Mirrors the
rowsattribute.-
long tabIndex The position of this element in the tabbing order. Mirrors the
tabindexattribute.-
readonly String type The type of this element, for compatibility with HTMLInputElement objects. This property always has the value “textarea”.
-
String value The text currently displayed in ...