tabIndex Help Please???

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

    tabIndex Help Please???

    Dear friends,

    I am using tabIndex and it works with my IE 5.5, IE6.0, and the NN6
    browsers.

    However, it does not work for NN4. After reading online & seeing in my
    JavScript Bible that it is NOT COMPATIBLE for NN4,,

    I am wondering if there is anyone out there with any ideas ,,as to how I may
    get the same tabbing sequence within NN4 without the use of tabIndex??

    Any ideas would be greatly appreciated,

    Thanks in advance,

    Brad


  • Philip Ronan

    #2
    Re: tabIndex Help Please???

    On 03.7.23 5:40 PM, Brad Isaacs wrote:
    [color=blue]
    > Dear friends,
    >
    > I am using tabIndex and it works with my IE 5.5, IE6.0, and the NN6
    > browsers.
    >
    > However, it does not work for NN4. After reading online & seeing in my
    > JavScript Bible that it is NOT COMPATIBLE for NN4,,
    >
    > I am wondering if there is anyone out there with any ideas ,,as to how I may
    > get the same tabbing sequence within NN4 without the use of tabIndex??[/color]

    Have you tried changing the order in which the form elements appear in the
    HTML file?

    Phil

    --
    Philip Ronan
    phil.ronanzzz@v irgin.net
    (Please remove the "z"s if replying by email)


    Comment

    • Brad Isaacs

      #3
      Re: tabIndex Help Please???

      Dear Phil,

      Can you please give me an example of what you mean?

      I have my tabIndex ...set as the first element

      <FORM tabIndex=#Reque st.tabIndex()#

      This is works in IE 5.5, 6.0 NS 6..although not in NS 4...therein lies my
      problem........ ......

      Any ideas??

      Brad Isaacs


      "Philip Ronan" <phil.ronanzzz@ virgin.net> wrote in message
      news:BB449A2B.1 6FEA%phil.ronan zzz@virgin.net. ..[color=blue]
      > On 03.7.23 5:40 PM, Brad Isaacs wrote:
      >[color=green]
      > > Dear friends,
      > >
      > > I am using tabIndex and it works with my IE 5.5, IE6.0, and the NN6
      > > browsers.
      > >
      > > However, it does not work for NN4. After reading online & seeing in my
      > > JavScript Bible that it is NOT COMPATIBLE for NN4,,
      > >
      > > I am wondering if there is anyone out there with any ideas ,,as to how I[/color][/color]
      may[color=blue][color=green]
      > > get the same tabbing sequence within NN4 without the use of tabIndex??[/color]
      >
      > Have you tried changing the order in which the form elements appear in the
      > HTML file?
      >
      > Phil
      >
      > --
      > Philip Ronan
      > phil.ronanzzz@v irgin.net
      > (Please remove the "z"s if replying by email)
      >
      >[/color]


      Comment

      • Philip Ronan

        #4
        Re: tabIndex Help Please???

        On 03.7.24 1:56 AM, Brad Isaacs wrote:
        [color=blue]
        > Dear Phil,
        >
        > Can you please give me an example of what you mean?
        >
        > I have my tabIndex ...set as the first element
        >
        > <FORM tabIndex=#Reque st.tabIndex()#[/color]

        You can't apply a tabindex to an entire form -- that isn't valid HTML.
        The tabindex attribute is only supported by these elements: A, AREA, BUTTON,
        INPUT, OBJECT, SELECT, and TEXTAREA.

        If that still doesn't work, then my original suggestion was to arrange the
        form elements in your HTML file in order of their tabbing index.

        For example...

        <table>
        <tr>
        <td><input (*Item 1*)><br><input (*Item 2*)></td>
        <td><input (*Item 3*)><br><input (*Item 4*)></td>
        </tr>
        </table>

        gives you a top-bottom left-right tabbing order, and

        <table>
        <tr>
        <td><input (*Item 1*)></td><td><input (*Item 2*)></td>
        </tr>
        <tr>
        <td><input (*Item 3*)></td><td><input (*Item 4*)></td>
        </tr>
        </table>

        gives you a left-right top-bottom tabbing order.

        But since you posted your HTML snippet I really have no idea what you're
        trying to achieve here.

        I hope this helps anyway

        Phil

        --
        Philip Ronan
        phil.ronanzzz@v irgin.net
        (Please remove the "z"s if replying by email)


        Comment

        Working...