Forum Moderators: open
It works great in IE, and NN6. But NN4 insists on tabbing through the image-links of the navigation bar in the frame above
the login frame first. (It works fine if I take the page out of frames, but that is not an option right now.)
Setting "tabindex" values makes no difference.
One other note: if I begin by clicking the mouse in the username box it will follow the correct order. So apparently the browser "doesn't see"/ignores where the focus started.
Any suggestions?
I followed several threads on the w3.org archives and everyone acknowledged the problem and no one had an answer.
Funny thing is, hearing it could not be done made me all the more determined to find a workaround.
And I did! At least for the page I was working on.
I simply put the navigation bar in the other frame in <div> tags, setting their position --absolute or relative doesn't matter, but the positioning is necessary --
<div id="" style="position:. . .">
(I'm not sure why the person who originally designed the page did not do this, since it was the pattern they followed elsewhere on the site...)
Now when I tab NN4 skips right over the other frame and on to the next field (the one I wanted).
I suppose if you were to use absolute positioning you could use a variation on this method to re-order your code and trick Netscape into following the tab order you want. . . ? Wouldn't that be a pain!
what if your navigation bar contained a few input fields? would the div have still fixed the problem?