I have textfields which are generated by for loop like
--------------------------------------------------------
print "<form method=\"post\" action=\"test.pl\">\n";
my @list = get_from_sub();
for $i (0 .. $#list) {
print "<input type=\"text\" name=\"qty$i\">\n
}
print "</form>
---------------------------------------------------------
Basically I want to use javascript to validate all textfields,
but how can I achieve this? I know normally we can use 'onSubmit'
in <form> but since my <form> is outside of loop, it can't detect
all checkboxes. Please help me sort this out
---------------------------------
Do you Yahoo!?
Win a $20,000 Career Makeover at Yahoo! HotJobs