how to do a simple alert pop up with jquery, if the user didn’t type the exact email address on the 2nd email input form? here’s what i have so far
<div id="reservation-request">
<form method="post" action="test.php">
<tr>
<td> Email</td>
<td>
<input type="text" name="Email" id="Email" />
</td>
</tr>
<tr>
<td>re-type Email</td>
<td>
<input type="text" name="Email2" id="Email2" />
</td>
</tr>
<tr>
<td colspan="2" align="right">
<input type="image" src="images/submit.jpg">
</td>
</tr>
</form>
</div>
1 Answer