[jQuery] [validate] array name attribute
hi,
i am having problem with validation if i would be using an array name
attribute
<form method="post" action="" id="form1">
Name: <input type="text" name="applicant[name]"
id="applicant_name">*
Address: <input type="text" name="applicant[address]"
id="applicant_address">*
Company Name: <input type="text" name="company[name]"
id="company_name">*
Company Address: <input type="text" name="company[address]"
id="company_address">*
</form>
with all fields required, jquery validate is not validating this one.
how would i get this working?
thanks..