Form - Tab Order

R

Richard

How do I set the tab order, but to only tab through fields and not hyperlinks.

Many thanks in advance.
 
M

Murray

You cannot disable tabbing through hyperlinks, as far as I know.

But to set the tab order for form fields, you would use the tabindex
attribute, e.g.,

<input tabindex="943".... 8)

or by editing the properties of the field in FP, you will see an input are
for tab order.
 
Top