How would I get the focus command to work using the code below. I'm
trying to place the cursor in the stnum field when the user opens the
form. Thanks Chris
print $query->start_form;
print $query->textfield(
-name=>'-stnum',
-default=>'',
-size=>14);
print $query->textfield(
-name=>'~stnm',
-default=>'',
-size=>40);
trying to place the cursor in the stnum field when the user opens the
form. Thanks Chris
print $query->start_form;
print $query->textfield(
-name=>'-stnum',
-default=>'',
-size=>14);
print $query->textfield(
-name=>'~stnm',
-default=>'',
-size=>40);
Comment