Hey Guys,
Please could anyone help me out with the following form I need to create a validation on the email field only if the user checked the radio button named Email.
Thanks in advance.
[HTML]<form action="" method="get">
<div align="center">
<table border="0" cellspacing="0" cellpadding="0" >
<tr>
<td>Name:</td>
<td>
<input type="text" name="textfield " id="textfield" />
</td>
</tr>
<tr>
<td>Phone Number:</td>
<td><input type="text" name="textfield 2" id="textfield2 " /></td>
</tr>
<tr>
<td>E-mail Address:</td>
<td><input type="text" name="textfield 3" id="textfield3 " /></td>
</tr>
<tr>
<td>Contact Method:</td>
<td>
<input type="radio" name="radio" id="radio" value="radio" /> Phone <input type="radio" name="radio" id="radio" value="radio" />
Email
</td>
</tr>
<tr>
<td>Type of Inquiry:</td>
<td><label><sel ect name="select" id="select" >
<option selected="selec ted">Question</option>
<option >Comment</option>
</select></label></td>
</tr>
<tr>
<td>Content:</td>
<td><textarea name="textarea" id="textarea" cols="45" rows="5"></textarea></td>
</tr>
</table>
<input name="Submit" type="button" value="Submit Form" />
</div></form>[/HTML]
Please could anyone help me out with the following form I need to create a validation on the email field only if the user checked the radio button named Email.
Thanks in advance.
[HTML]<form action="" method="get">
<div align="center">
<table border="0" cellspacing="0" cellpadding="0" >
<tr>
<td>Name:</td>
<td>
<input type="text" name="textfield " id="textfield" />
</td>
</tr>
<tr>
<td>Phone Number:</td>
<td><input type="text" name="textfield 2" id="textfield2 " /></td>
</tr>
<tr>
<td>E-mail Address:</td>
<td><input type="text" name="textfield 3" id="textfield3 " /></td>
</tr>
<tr>
<td>Contact Method:</td>
<td>
<input type="radio" name="radio" id="radio" value="radio" /> Phone <input type="radio" name="radio" id="radio" value="radio" />
</td>
</tr>
<tr>
<td>Type of Inquiry:</td>
<td><label><sel ect name="select" id="select" >
<option selected="selec ted">Question</option>
<option >Comment</option>
</select></label></td>
</tr>
<tr>
<td>Content:</td>
<td><textarea name="textarea" id="textarea" cols="45" rows="5"></textarea></td>
</tr>
</table>
<input name="Submit" type="button" value="Submit Form" />
</div></form>[/HTML]
Comment