View Full Version : text area


HardyzGurL87
07-19-2003, 07:16 PM
When using a text area, how do you remove the scrollbar? and also, how do you change it so that you don't see a cursor when you click on it, and you can't change the text or erase it?

MaGiCSuN
07-19-2003, 07:56 PM
scrollbar: add the following to your <textarea> coding: style="overflow:hidden;"

add readonly to the <textarea> code to let people not be able to edit stuff. although it doesn't matter, becuase when you reload the page everything is fine again :)

Love,
Mirna

HardyzGurL87
07-19-2003, 08:18 PM
Thanks :) and.. where exactly in the code do i put the 'readonly'?

MaGiCSuN
07-19-2003, 08:19 PM
into <textarea> too

like this:

<textarea readonly height="blah"></textarea>

Love,
mirna

HardyzGurL87
07-19-2003, 08:44 PM
oh, haha, i'm dumb :-D thanks!