Textarea type Property

❮ Textarea Object

Example

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

var x = document.getElementById("myTextarea").type;
Try it Yourself »

Description

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

Property
type Yes Yes Yes Yes Yes

Syntax

textareaObject.type

Return Value

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

❮ Textarea Object
Copyright 1999-2023 by Refsnes Data. All Rights Reserved.