I'd like to tab my form fields, in a loop, using:
function tabbing(field1, field2,field3,field4)
{ for (i=0;i<argumrntsNumber;i++)
{
document.form1[fieldName].tabIndex=i;
}
}
I'd like "argumentsNumber" to hold the number of arguments
that the function gets (field1, field2,field3), which can be changed of course,
so the loop will work for eavh field, until all list is tabbed.
("i" is teh number of the tabIndex).
I need it for IE and ns6.
Thanks for any help.
function tabbing(field1, field2,field3,field4)
{ for (i=0;i<argumrntsNumber;i++)
{
document.form1[fieldName].tabIndex=i;
}
}
I'd like "argumentsNumber" to hold the number of arguments
that the function gets (field1, field2,field3), which can be changed of course,
so the loop will work for eavh field, until all list is tabbed.
("i" is teh number of the tabIndex).
I need it for IE and ns6.
Thanks for any help.