Having trouble making a textarea readonly in Netscape

liunx

Guest
I am trying to disable or make a text area readonly, so i am using the "readonly" attribute of textarea. This only seems to work in IE though not in netscape.<br />
<br />
<textarea name="sample" rows="3" cols="20" disabled="disabled"><br />
<br />
i have also tried it like this<br />
<textarea name="sample" rows="3" cols="20" disabled><br />
<br />
i have also used readonly, but again only works in IE.<br />
Please Help!!<!--content-->Try to add this:<br />
<texarea onfocus="this.blur()"><!--content-->readonly and disabled are not supported in NS4.xx only NS6.x<!--content-->
 
Back
Top