|
|
 |
Re: FN-FORUM: Check box problem
date posted 19th March 2008 10:18
[EMAIL REMOVED] wrote:
> How do you check if a Check Box exists using Javascript before you test if
> it is checked?
> This is my Routine
On a slightly different note, your routine sets arguments.IsValid=false
and then does checks and may then set it to be true. It seems to me that
you are checking to make sure at least one check box is ticked. You also
have named the check boxes with numbers. So how about something like,
var i;
var bValid;
bValid=false;
for(i=0;i |
 |
|