Click to See Complete Forum and Search --> : Locked textarea?


jreamer
08-17-2003, 04:00 PM
Is there anyway to have a text area with scroll bars embedded in my page that users can't type into?

I want a lot of text displayed in a small area and can't afford any more html pages in the site.

pyro
08-17-2003, 04:22 PM
You can use the readonly attribute (readonly="readonly") to make a textarea that is not editabled or you can use a <div> with the overflow set to auto (CSS): style="overflow:auto;"

jreamer
08-17-2003, 04:25 PM
I'll try it out. Thanks alot.

pyro
08-17-2003, 04:26 PM
No problem... :)