Textarea css not clickable
4 answers
Try
<textarea disabled="yes"></textarea>
In most browsers this will be grayed out in the content of the text box and the user will not be able to copy any text from it. If you don't like it, you can use:
<textarea readonly="yes"></textarea>
The text box will remain clickable and the user will still be able to select / copy the text within it, but he will not be able to edit it.
+9
a source to share