Syntax | This element uses separate opening and closing tags.<textarea>...</textarea> |
---|---|
Usage | The <textarea> tag is used to create a multi-line text input control. The <textarea> tag can be used with a <form> tag. <textarea> tag example. <form action="example_input.php" method="post"> <p> <textarea name="txtareatest" cols="25" rows="10">sample</textarea> <input type="submit" value="Send" /> <input type="reset" /> </p> </form> The <textarea> tag can also be used apart from a form element by using a scripting language, like JavaScript, to give it functionality. |
Content Model | The <textarea> element can contain Text between its opening and closing tags. |
Required | Tag Specific | Core | Focus | Events | Language |
---|---|---|---|---|---|
cols rows | disabled name onchange onselect readonly | id class style title | accesskey onblur onfocus tabindex | onclick ondblclick onkeydown onkeypress onkeyup onmousedown onmousemove onmouseout onmouseover onmouseup | dir lang xml:lang1 |
Notes: 1. XHTML only. |
Attribute | Description |
---|---|
cols | The cols attribute specifies the visible width in number of average character widths. Note: This is a required attribute. |
rows | The rows attribute specifies the number of text rows that are visible. Note: This is a required attribute. |
disabled | The disabled attribute is used to disable the control so that it will not accept user input. <textarea> tag example using the disabled attribute. <textarea name="txtareatest" cols="25" rows="10"
disabled="disabled">sample</textarea> |
name | The name attribute assigns a name to the control. The control name is paired with the current text and submitted with the form. |
onchange | The onchange attribute is used to specify a script to be be run when the control loses its focus, if its value has changed. |
onselect | The onselect attribute is used to specify a script to be be run when text is selected. |
readonly | The readonly attribute prevents the control from being changed. <textarea> tag example using the readonly attribute. <textarea name="txtareatest" cols="25" rows="10"
readonly="readonly">sample</textarea> |
id | The id attribute assigns a unique name to a tag. This allows style sheets or scripts to reference the tag. See id Example |
class | The class attribute assigns a class name to a tag. The class name does not need to be unique. More than one tag can have the same class name. This allows style sheets or scripts to reference multiple tags with a single class name. See class Example |
style | The style attribute specifies styles for the tag. For Cascading Style Sheets (CSS), the syntax is name:value. Each name:value pair is separated by semicolons. See style Example |
title | The title attribute specifies additional information about the tag. It is common for browsers to display the title when the pointing device stops over the object. See title Example |
accesskey | The accesskey specifies a shortcut key for a tag. The action that is taken when an access key is invoked depends on the tag and may also depend on the browser. For example, if it is used with an <a> tag, some browsers may follow the link when the access key is invoked and other browsers may give focus to the link. See accesskey Example |
onblur | The onblur attribute specifies a script to be run when the tag loses focus. See onblur Example |
onfocus | The onfocus attribute specifies a script to be run when the tag receives focus. See onfocus Example |
tabindex | The tabindex attribute specifies the tabbing position of the tag. The tabbing sequence runs from lower values to higher values. The valid range of values is between 0 and 32767. See tabindex Example |
onclick | The onclick attribute specifies a script to be run when the object is clicked with a mouse or other pointing device. See onclick Example |
ondblclick | The ondblclick attribute specifies a script to be run when the object is double clicked with a mouse or other pointing device. See ondblclick Example |
onkeydown | The onkeydown attribute specifies a script to be run when a key is pressed down. See onkeydown Example |
onkeypress | The onkeypress attribute specifies a script to be run when a key is pressed and released. See onkeypress Example |
onkeyup | The onkeyup attribute specifies a script to be run when a key is released. See onkeyup Example |
onmousedown | The onmousedown attribute specifies a script to be run when the mouse button, or other pointing device button, is pressed while over the object. See onmousedown Example |
onmousemove | The onmousemove attribute specifies a script to be run when the mouse, or other pointing device, is moved while it is over the object. See onmousemove Example |
onmouseout | The onmouseout attribute specifies a script to be run when the mouse, or other pointing device, is moved away from an object after being over it. See onmouseout Example |
onmouseover | The onmouseover attribute specifies a script to be run when the mouse, or other pointing device, is moved onto the object. See onmouseover Example |
onmouseup | The onmouseup attribute specifies a script to be run when the mouse button, or other pointing device button, is released while over the object. See onmouseup Example |
dir | The dir attribute tells the browser whether the text should be displayed from left-to-right or right-to-left. It does not reverse the direction of the characters, like the <bdo> tag does, but it can help the browser to determine if the text should be aligned on the left side or the right side. See dir Example |
lang | The lang attribute specifies a language. This attribute can help the browser to correctly display text. This attribute can also be useful for braille translation software, speech synthesizers, dictionary definitions, etc. See lang Example |
xml:lang | The xml:lang attribute specifies a language for XHTML documents. This attribute can help the browser to correctly display text. This attribute can also be useful for braille translation software, speech synthesizers, dictionary definitions, etc. See xml:lang Example Note: XHTML only. |