Quackit Logo

Got a MySpace Page?

Get "www.yourname.com" for your MySpace page. Learn how >>.

HTML textarea Tag

Print Version
 

The HTML textarea tag is used within a form to declare a textarea element - a control that allows the user to input text over multiple rows.

Also see the HTML form tag.

Example
<textarea rows="3" cols="40">
  Textarea provides space for as many characters as you like.
</textarea>

The above code produces the following input controls:

Attributes:
Attributes specific to this tag:
AttributeDescription
nameAssigns a name to the input control.
rowsSpecifies the height of the textarea based on the number of visible lines of text. If there's more text than this allows, users can scroll using the textarea's scrollbars.
colsSpecifies the width of the textarea based on the number of visible character widths.
Other Attributes:
AttributeDescription
classDocument wide identifier.
idDocument wide identifier
dirSpecifies the direction of the text
langLanguage code
titleSpecifies a title to associate with the element. Many browsers will display this when the cursor hovers over the element (similar to a "tool tip").
styleInline style (CSS)
readonlySets the textarea to read-only - it won't allow the user to change the value. The textarea however, can receive focus and is included when tabbing through the form controls.
disabledDisables the input control. The button won't accept changes from the user. It also cannot receive focus and will be skipped when tabbing.
tabindexHelps determine the tabbing order (when the user 'tabs' through the elements on the page).
onfocusIntrinsic event (see event handlers)
onblurIntrinsic event (see event handlers)
onselectIntrinsic event (see event handlers)
onchangeIntrinsic event (see event handlers)
onclickIntrinsic event (see event handlers)
ondbclickIntrinsic event (see event handlers)
onmousedownIntrinsic event (see event handlers)
onmouseupIntrinsic event (see event handlers)
onmouseoverIntrinsic event (see event handlers)
onmousemoveIntrinsic event (see event handlers)
onmouseoutIntrinsic event (see event handlers)
onkeypressIntrinsic event (see event handlers)
onkeydownIntrinsic event (see event handlers)
onkeyupIntrinsic event (see event handlers)

Also see the complete list of HTML tags


Enjoy this website?

  1. Link to this page (copy/paste into your own website or blog):
  2. Add this page to your favorite social bookmarks sites:
                     
  3. Add this page to your Favorites

Oh, and thank you for supporting Quackit!