What is the difference between the readonly and disabled attributes for the <textarea> element?
<textarea>
readonly allows clicking in the <textarea> element. disabled prevents all interaction with the control.
disabled allows clicking in the <textarea> element. readonly prevents all interaction with the control.
readonly is invalid attribute for <textarea>, while disabled is a valid attribute.
disabled is invalid attribute for <textarea>, while readonly is a valid attribute.