Thread: Text Areas...
Results 1 to 2 of 2
Related
-
Text vs image of text for logo - best practices Forum: HTML Forum
Replies: 1 -
rollover text to display description text Forum: HTML Forum
Replies: 16 -
How to get my page content text to show up before navigation text for improved SEO Forum: HTML Forum
Replies: 0 -
Linking to areas on a web page Forum: HTML Forum
Replies: 11 -
colors and text input boxes and text areas Forum: HTML Forum
Replies: 2
-
09-02-2003, 04:43 AM #1
Text Areas...
Hi! I was wondering what I could use that is like a text area.. but isn't? I don't want my site viewers typing into the text area I created, and being able to delete what I typed disabling them from seeing what I typed unless they hit refresh or something like that. It would be really annoying :| Please help!
-
09-02-2003, 05:26 AM #2
You can use disabled or readonly for the text area. If it is a form & you want that value to be submitted, use readonly:
<textarea rows="2" name="message" cols="20" readonly>
If you are not usingg it to submit in a form, you can use disabled instead;
<textarea rows="2" name="message" cols="20" disabled>