Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

textarea readonlytag 1

Status
Not open for further replies.

ktsrikanth

Programmer
Feb 6, 2001
22
0
0
US
Hi
i have a textarea tag. i need the textarea to be readonly.
I added the tag in the <textarea rows=3 cols=5 readonly>. but it is not working in netscape.
the readonly attribute wotks only in IE.
Please help me. Thank you

 
Readonly and disabled aren't supported in Netscape 4.

You could probably emulate this for netscape 4 with a javascript function... You might want to try asking in the javascript forum.

Sorry I couldn't be more help...
 
<input type=text name=readonly value=&quot;This is Read-Only&quot; onFocus=&quot;this.blur();&quot;>

:)

props to luciddream --
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top