Computer Webmaster Gaming Console Graphics Forum

Welcome to the Computer Webmaster Gaming Console Graphics Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

MK PitStop Main Earn $25 Earn Money Posting Extras Members Blogs Image Hosting User Pages
Go Back   Computer Webmaster Gaming Console Graphics Forum > Webmaster Forum > Website Coding > HTML
Register FAQ/Rules Become A V.I.P. Member Search Today's Posts Mark Forums Read

HTML HTML problems, maybe you are trying to code for MySpace. Get all the HTML coding help here for your website.

Google
Closed Thread
 
LinkBack Thread Tools Display Modes
Old 07-01-2007, 1:22 PM   #1
FatBlokeOnBikepins@pinsmother-truckers.co.uk
 
FatBlokeOnBikepins@pinsmother-truckers.co.uk's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default tabindex

..
To aid navigation field-by-field of a form, I was told to use tabindex=N.
Do I have to tabindex *every* field? - or can I get away with tabindex-ing just the first
X of N fields?
 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Advertisements
Old 07-01-2007, 1:23 PM   #2
Jukka K. Korpela
 
Jukka K. Korpela's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default tabindex

FatBlokeOnBikepins@pinsmother-truckers.co.uk wrote:

> To aid navigation field-by-field of a form, I was told to use
> tabindex=N.


Why?

> Do I have to tabindex *every* field?


No.

> - or can I get
> away with tabindex-ing just the first X of N fields?


Why would you use it at all? You should first ask the people who gave
you the advice _why_ they recommend it. Maybe they saw your page - we
didn't.

The simple method is to put the fields into a form so that when read
linearly (linearizing tables when needed), they appear in a suitable
order. That's actually the only reliable method, since tabindex is not
universally supported.

--
Yucca, http://www.cs.tut.fi/~jkorpela/
Pages about Web authoring: http://www.cs.tut.fi/~jkorpela/www.html


 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-01-2007, 1:23 PM   #3
Hywel Jenkins
 
Hywel Jenkins's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default tabindex

In article <mnnefvse62qoj34tk7a93fdbteelumi1g9@4ax.com>,
FatBlokeOnBikepins@pinsmother-truckers.co.uk says...
> .
> To aid navigation field-by-field of a form, I was told to use tabindex=N.
> Do I have to tabindex *every* field? - or can I get away with tabindex-ing just the first
> X of N fields?
>

Try it.

--
Hywel Never knowingly understood
http://hyweljenkins.co.uk/
http://hyweljenkins.co.uk/mfaq.php
 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-01-2007, 1:23 PM   #4
FatBlokeOnBikepins@pinsmother-truckers.co.uk
 
FatBlokeOnBikepins@pinsmother-truckers.co.uk's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default tabindex

..
Thanx for the info.
I was interested in the feature becos use of the Tab key is faster than positioning by
clicking a mouse of course and in some of the forms there can be links to other pages.
Thanx again.


>> To aid navigation field-by-field of a form, I was told to use
>> tabindex=N.

>
>Why?
>
>> Do I have to tabindex *every* field?

>
>No.
>
>> - or can I get
>> away with tabindex-ing just the first X of N fields?

>
>Why would you use it at all? You should first ask the people who gave
>you the advice _why_ they recommend it. Maybe they saw your page - we
>didn't.
>
>The simple method is to put the fields into a form so that when read
>linearly (linearizing tables when needed), they appear in a suitable
>order. That's actually the only reliable method, since tabindex is not
>universally supported.


 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-01-2007, 1:23 PM   #5
spaghetti
 
spaghetti's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default tabindex


<FatBlokeOnBikepins@pinsmother-truckers.co.uk> wrote in message
news:vssffv8nj3ejov851s66l3292omikijee4@4ax.com...
> I was interested in the feature becos use of the Tab key is faster than

positioning by
> clicking a mouse of course and in some of the forms there can be links to

other pages.
> Thanx again.


Most browsers will naturally tab through the fields in the order they are
presented in HTML. The order they are in HTML should be logical enough to be
understood without relying on visual placement whatsoever. So your forms
will tab properly if you code them properly and considerately.







 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-01-2007, 1:24 PM   #6
FatBlokeOnBikepins@pinsmother-truckers.co.uk
 
FatBlokeOnBikepins@pinsmother-truckers.co.uk's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default tabindex

><FatBlokeOnBikepins@pinsmother-truckers.co.uk> wrote in message
>news:vssffv8nj3ejov851s66l3292omikijee4@4ax.com.. .
>> I was interested in the feature becos use of the Tab key is faster than

>positioning by
>> clicking a mouse of course and in some of the forms there can be links to

>other pages.
>> Thanx again.

>
>Most browsers will naturally tab through the fields in the order they are
>presented in HTML. The order they are in HTML should be logical enough to be
>understood without relying on visual placement whatsoever. So your forms
>will tab properly if you code them properly and considerately.
>

Well, Sir, I like to think I do; however, in each admin suite, at the top of each input or
choice page, I put a number of links to other pages containing functions which the
operator might wish to use. Without the tabindex feature (again, thanx to everyone) the
TAB key will cycle through the IE6 address field and then each of these links before
reaching the first input field.
 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-01-2007, 1:24 PM   #7
rf
 
rf's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default tabindex


<FatBlokeOnBikepins@pinsmother-truckers.co.uk> wrote in message
news:nlcgfvk783pt47n3v1bgfhm8pb28f3me2a@4ax.com...
> ><FatBlokeOnBikepins@pinsmother-truckers.co.uk> wrote in message
> >news:vssffv8nj3ejov851s66l3292omikijee4@4ax.com.. .
> >> I was interested in the feature becos use of the Tab key is faster

than
> >positioning by
> >> clicking a mouse of course and in some of the forms there can be

links to
> >other pages.
> >> Thanx again.

> >
> >Most browsers will naturally tab through the fields in the order they

are
> >presented in HTML. The order they are in HTML should be logical enough

to be
> >understood without relying on visual placement whatsoever. So your

forms
> >will tab properly if you code them properly and considerately.
> >

> Well, Sir, I like to think I do; however, in each admin suite, at the top

of each input
> page, I put a number of links to other pages containing functions which

the operator might
> wish to use. (I choose deliberately to put them at the top.) Without the

tabindex
> feature (again, thanx to everyone) the TAB key will cycle through the IE6

address field
> and then each of these links before reaching the first input field.


Sir, that is what the tab key is _supposed_ to do.

Sir, that is how viewers who do not use a mouse navigate a site.

Cheers
Richard.


 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-01-2007, 1:24 PM   #8
Jukka K. Korpela
 
Jukka K. Korpela's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default tabindex

FatBlokeOnBikepins@pinsmother-truckers.co.uk wrote:

> in each admin suite, at the top of each input or
> choice page, I put a number of links to other pages containing
> functions which the operator might wish to use.


- "Doctor, it hurts if I do _this_."
- "Then don't do that."

> Without the
> tabindex feature (again, thanx to everyone) the TAB key will cycle
> through the IE6 address field and then each of these links before
> reaching the first input field.


And that's what will keep happening on browsers that do not support the
tabindex attribute.

There are several ways to deal with "navigation links":
- leave them out (one contextual link at the bottom is usually
sufficient - there's a difference between "might wish to" [according
to page designer's opinion] and "will"
- precede them by a "skip navigation" type of link
- put them at the bottom of the page
- put them last in the HTML markup and use CSS positioning to put them
elsewhere visually; the tabbing order will be by the markup order,
not visual rendering.
(Some people will tell you to focus() in the first input field using
JavaScript, but it will often hurt when it works, causing the user lose
input if he has started typing fast.)

--
Yucca, http://www.cs.tut.fi/~jkorpela/
Pages about Web authoring: http://www.cs.tut.fi/~jkorpela/www.html


 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-01-2007, 1:27 PM   #9
Jacqui or (maybe) Pete
 
Jacqui or (maybe) Pete's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default tabindex

In article <mnnefvse62qoj34tk7a93fdbteelumi1g9@4ax.com>,
FatBlokeOnBikepins@pinsmother-truckers.co.uk says...
> .
> To aid navigation field-by-field of a form, I was told to use tabindex=N.
> Do I have to tabindex *every* field? - or can I get away with tabindex-ing just the first
> X of N fields?
>


Further to other responses, I like the following javascript approach:

http://www.html-faq.com/htmlforms/?entryfocus

Which avoids the 'losing focus on load' problem.
 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Featured Websites
Free Space
Free Space
Free Space Free Space
Closed Thread
Tags:




Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Featured Websites




All times are GMT +1. The time now is 12:22 AM.


Powered by: vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.0.0
Cheap Computers
MK PitStop Copyright 2005 - 2008

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98