HTMLTextAreaElement: readOnly property

The readOnly property of the HTMLTextAreaElement interface indicates that the user cannot modify the value of the control. Unlike the disabled attribute, the readonly attribute does not prevent the user from clicking or selecting in the control. It reflects the <textarea> element's readonly attribute.

Value

A boolean.

Examples

js
const textareaElement = document.getElementById("comment");
console.log(textArea.readOnly);

Specifications

Browser compatibility

See also