Justtechjobs.com Find a programming school near you






Online Campus Both


php-general | 2001032

Re: [PHP] Tab Index Functionality From: Data Driven Design (jeff <email protected>)
Date: 03/30/01

You can specify taborder by inserting a tabindex attribute into your input
tags

<input type="text" name="foo" tabindex="1">
<input type="text" name="foo3" tabindex="3">
<input type="text" name="foo2" tabindex="2">

In this example tabing order would be 1, 3, 2

There's also an Internet Explorer only attribute called notab

Data Driven Design
P.O. Box 1084
Holly Hill, FL 32125-1084

http://www.datadrivendesign.com
http://www.rossidesigns.net
----- Original Message -----
From: Wayne Joyner <wayne_joyner <email protected>>
To: Php-General <email protected> Php. Net <php-general <email protected>>
Sent: Friday, March 30, 2001 12:02 PM
Subject: [PHP] Tab Index Functionality

> I am interested in finding out how to use TAB INDEX. I have a form that I
would like to order the sequence of field selection. The form consist of
HTML with embedded PHP commands that retrieve data from a database to auto
populate (or provide) drop down list boxes for the form. Is there any way I
can specify the sequence of field selection for users wanting to tab through
fields. Unfortunately, I have set the field label descriptions with help
sensitive <A HREF to a external help file > and these become stops in the
tabbing sequence. I basically want to skip over the help locations when
pressing the TAB key.
>
> Any help you can provide would be greatly appreciated.
>
>
> Wayne Joyner
> CSG Systems, Inc.
> 2525 N. 117th Avenue
> Mail Stop 1-TSC
> Omaha, NE
> (402) 431-7138
>
>
>

----------------------------------------------------------------------------

----

> -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, e-mail: php-general-unsubscribe <email protected> > For additional commands, e-mail: php-general-help <email protected> > To contact the list administrators, e-mail: php-list-admin <email protected>

-- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: php-general-unsubscribe <email protected> For additional commands, e-mail: php-general-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>