How do I disable a Text Area so that the user is only able to see the contents, but not allowed to change the contents?
Created Jan 24, 2002
gopi namani Use the readonly attribute:
<textarea name="ta" rows="20" cols="20" readonly>add text here</textarea>
<textarea name="ta" rows="20" cols="20" readonly>add text here</textarea>