THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

Textarea type Property

Textarea Object Reference Textarea Object

Example

Find out which type of form element a text area element is:

var x = document.getElementById("myTextarea").type;

The result of x will be:

textarea
Try it Yourself »

Definition and Usage

The type property returns which type of form element a text area is.

For a text area object this will always be "textarea".


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The type property is supported in all major browsers.


Syntax

textareaObject.type

Return Value

Type Description
String The type of form element the text area is

Textarea Object Reference Textarea Object