Hi all,
I follow the tooltips that recommends to use "field names" to assign form fields to validate. I use the <input name="field_name"> attribute to do that but don't works. What do I miss?
My form HTML:
Validation > 1 - required (not blank):
I follow the tooltips that recommends to use "field names" to assign form fields to validate. I use the <input name="field_name"> attribute to do that but don't works. What do I miss?
My form HTML:
<fieldset id="block1"> <legend>Block 1</legend> <div class="row"> <label for="name">Name:</label> <input class="inputbox" type="text" name="name" size="30" id="nome_id" value="" /> </div> <div class="row"> <label for="email">E-mail:</label> <input class="inputbox" type="text" name="email" size="30" id="email_id" value="" /> </div> </fieldset> {imageverification}<br /> <input name="submit" value="Submit" type="submit" class="button" id="button_id" />
Validation > 1 - required (not blank):
name, email