HTML - Trapped In Tabindex
Hi all,
I an creating HTML pages on the fly using PHP include like this, HTML Code: <html> <?php include 'head.php'; ?> <?php include 'navigationbar.php'; ?> <form> <input type="text" name="user" tabindex=1> <input type="text" name="pswd" tabindex=2> </form> </html> Now problem is that 'navigationbar.php' is having links with tabindexes starting from 1 itself. This makes my pages navigation messed up using tabs. I donot have control on 'navigationbar.php' How to get over this problem? thanks in advance. Similar TutorialsI have a username input, then a link, then a password input but I do not want a user-pressed <TAB> key to stop on the link in the middle. Up to now, I have been using a negative TABINDEX on the <A> attribute, but w3 does not allow a negative value. What should I do please? I have a set of grouped radio boxes and I assign a tabindex to each, but the browser never tabs to the other 2 radio buttons. Any thoughts on how to make this work? The real problem is that I am developing for blackberry without a 'real' mouse and they use tabindex to hit each input. Here is the code: Code: <html> <body> <fieldset name=f1> r1<input type=radio tabindex=3 name=r id=r1 value=1 checked> r2<input type=radio tabindex=1 name=r id=r2 value=2> r3<input type=radio tabindex=2 name=r id=r3 value=3> </fieldset> </body> </html> Thanks in advance for the help Bob Please put an old man out of his mysery I am developing a stand alone 'kiosk' application, it only needs to work in IE 6/7 Why does the page not follow the tabindex order for form radio buttons? It only ever seems to tab between 'checked' buttons - I can not tab to unchecked items. Take a look at http://www.thad.entadsl.com/feedback/feed.php to see what I mean. (ignore layout its a work in progress) Why? I'm developing an app that use IE6 and have come across what appears to be a bug but I couldn't find any references to it on the web. I can't make IE6 ignore tabs on radio buttons. The following code snippet will demonstrate the problem. According to the HTML, you should be able to tab from Button 3, to Button 1, then back to the window (address bar). The radio buttons should behave like Button 2 and ignore the tabs, but they don't. I haven't had the opportunity to try this on other browsers yet. But for this project, it has to work on IE6. Any ideas? And a followup question as well. Is there a way to ONLY have tabs in the content window, and to NOT tab to the address bar? -------------------------------------------------------------------------------------------------- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title> My Document </title> </head> <body> <form> <input type="button" name="button1" value="Button One" tabindex=2> <br/> <input type="button" name="button2" value="Button Two" tabindex=-1> <br/> <input type="radio" name="buttonG" value="Button Four" tabindex=-1> <br/> <input type="radio" name="buttonG" value="Button Five" tabindex=-1 CHECKED> <br/> <input type="button" name="button3" value="Button Three" tabindex=1> <br/> </form> </body> </html> Hi friends, I have created a very complex table using HTML, for which I need to set tab orders in such a way. Usually tab orders are controlled by tabindex tag, as far as I know. I did it exactly with tabindex. After that only I realized that I'm not supposed to use tabindex?! They say big no no for tabindex. I'm really confused without using tab index how do I do that? I'm not that much pro in HTML/XHTML guys. Please help. Any help is much appreciated. Thank you. |