'disabled' property in Netscape

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Gautam

    'disabled' property in Netscape

    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
  • Martin Honnen

    #2
    Re: 'disabled' property in Netscape



    Gautam wrote:

    [color=blue]
    > 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[/color]

    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>

    --

    Martin Honnen

    Comment

    • MyndPhlyp

      #3
      Re: 'disabled' property in Netscape


      "Gautam" <gautambhatt@gm ail.com> wrote in message
      news:b7636347.0 501070656.4999b 454@posting.goo gle.com...[color=blue]
      > 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[/color]

      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.


      Comment

      • Grant Wagner

        #4
        Re: 'disabled' property in Netscape



        "Gautam" <gautambhatt@gm ail.com> wrote in message
        news:b7636347.0 501070656.4999b 454@posting.goo gle.com...[color=blue]
        > 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[/color]

        <form name="myForm">
        <input
        type="text"
        name="myInput"
        value="abc"
        defaultvalue="a bc"
        onchange="this. value=this.defa ultValue;"
        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.

        --
        Grant Wagner <gwagner@agrico reunited.com>
        comp.lang.javas cript FAQ - http://jibbering.com/faq


        Comment

        Working...