'disabled' property in Netscape

G

Gautam

hi group

i am developing an application , we have to run it for Netscape
V4.76(!!) , the problem is it seems that Netscape V4.76 does not
support 'disabled' for form elements for example something like

<INPUT class=f2 type=checkbox value="C" name="chkAttr" DISABLED />

is not working for netscape whereas its working fine for IE

please help me out

Gautam Bhatt
 
M

Martin Honnen

Gautam wrote:

we have to run it for Netscape
V4.76(!!) , the problem is it seems that Netscape V4.76 does not
support 'disabled' for form elements for example something like

<INPUT class=f2 type=checkbox value="C" name="chkAttr" DISABLED />

is not working for netscape whereas its working fine for IE

Have you tried IE 3?
Seriously, Netscape 4 is old and doesn't have support for disabled form
controls, not even with static HTML. If you want to have HTML 4 support
then use Netscape 7 (6 would do for that too but use the latest version
if possible).
As a workaround for NN 4 the following might help:
<http://www.faqts.com/knowledge_base/view.phtml/aid/2188/fid/310>
 
M

MyndPhlyp

Gautam said:
hi group

i am developing an application , we have to run it for Netscape
V4.76(!!) , the problem is it seems that Netscape V4.76 does not
support 'disabled' for form elements for example something like

<INPUT class=f2 type=checkbox value="C" name="chkAttr" DISABLED />

is not working for netscape whereas its working fine for IE

please help me out

You will find that problem exists up to Communicator v4.8 (terminal
release). Neither the DISABLED nor the READONLY stop the <input> from
receiving focus and allowing the user to enter/change a value.
 
G

Grant Wagner

Gautam said:
hi group

i am developing an application , we have to run it for Netscape
V4.76(!!) , the problem is it seems that Netscape V4.76 does not
support 'disabled' for form elements for example something like

<INPUT class=f2 type=checkbox value="C" name="chkAttr" DISABLED />

is not working for netscape whereas its working fine for IE

please help me out

Gautam Bhatt

<form name="myForm">
<input
type="text"
name="myInput"
value="abc"
defaultvalue="abc"
onchange="this.value=this.defaultValue;"
onfocus="if (this.blur) this.blur();"
/>
</form>

But it's still not completely the same as READONLY or DISABLED, and it's
quite a bit of code to prevent the changing of an input that you will
have to validate on the server anyway.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,754
Messages
2,569,521
Members
44,995
Latest member
PinupduzSap

Latest Threads

Top