Is it possible to validate one required with two text boxes? I need the user to either enter in a phone number or an email address or both before submitting the form. Cant seem to get this to work properly allthough the tooltip says that it would work with textbox/radio elements.
Here is my form code:
In line 7 of validation I have : email
In line 12 of validation I have: phone, email
Any help?
Thank you in advance
Here is my form code:
<label>Phone Number
<input type="text" name="phone" id="phone" />
</label>
<label>Email Address
<input type="text" name="email" id="email" />
</label> <br /><br />
<input type="submit" name="submit" id="submit" value="Submit" />
In line 7 of validation I have : email
In line 12 of validation I have: phone, email
Any help?
Thank you in advance