Firefox Tomorrow

web api instance property

HTMLTextAreaElement: readOnly property

View on MDN ↗

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

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

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also