Results 1 to 2 of 2

Thread: tabindex does not work why?

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Jul 2000
    Location
    didn't decide yet
    Posts
    222

    tabindex does not work why?

    i have the following code in an asp page

    Code:
    <FORM method="post" action="tUsr.asp" id=login name=login>
    <input tabindex="0"  type="text" name="Usr">
    	<input tabindex="1" type="password" name="Usr">
    <input tabindex="2" type="submit" value="login">
    
    </form>
    but when i load the page the usr field is not focused can someone point out what am i doing wrong


    thnks
    Come and get our ISDN CallerID http://www.3wm.biz

  2. #2
    VBA Nutter visualAd's Avatar
    Join Date
    Apr 2002
    Location
    Ickenham, UK
    Posts
    4,906
    The tabindex just specifies the order in which form elements will be traversed when the tab key is pressed.

    To automatically focus the first field in the form, add this javascript code to the bottom of your page:
    Code:
    <html>
    	<body>
    		<form method="post" action="tUsr.asp" id="login" name="login">
    			<input tabindex="1"  type="text" name="Usr" />
    			<input tabindex="2" type="password" name="Usr" />
    			<input tabindex="3" type="submit" value="login" />
    		</form>
    		<script type="text/javascript" lanaguage="JavaScript1.1">
    			<!--
    			document.login.Usr[0].focus();		
    			-->
    		</script>
    	</body>
    </html>
    PHP || MySql || Apache || Get Firefox || OpenOffice.org || Click || Slap ILMV || 1337 c0d || GotoMyPc For FREE! Part 1, Part 2

    | PHP Session --> Database Handler * Custom Error Handler * Installing PHP * HTML Form Handler * PHP 5 OOP * Using XML * Ajax * Xslt | VB6 Winsock - HTTP POST / GET * Winsock - HTTP File Upload

    Latest quote: crptcblade - VB6 executables can't be decompiled, only disassembled. And the disassembled code is even less useful than I am.

    Random VisualAd: Blog - Latest Post: When the Internet becomes Electricity!!


    Spread happiness and joy. Rate good posts.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width