Readonly and disabled textareasReadonly means that the textarea can only be read and the stuff in the readonly textarea is also submitted when using forms. The disabled feature is the same as readonly except that the stuff in the disabled textarea is not submitted when using forms.
<textarea READONLY>
This is a read-only textarea </textarea>
<textarea DISABLED>
This is a disabled textarea </textarea>
|