Created
January 20, 2020 16:10
-
-
Save potikanond/1fbec3ae8d5e6e06bcbc0befcc647982 to your computer and use it in GitHub Desktop.
JavaScript simple form validation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>Form Validation</title> | |
</head> | |
<body> | |
<form action="" name="myForm" onsubmit="return(validate());"> | |
<table cellspacing="2" cellpadding="2" border="1"> | |
<tr> | |
<td align="right">Name</td> | |
<td><input type="text" name="Name" /></td> | |
</tr> | |
<tr> | |
<td align="right">EMail</td> | |
<td><input type="text" name="EMail" /></td> | |
</tr> | |
<tr> | |
<td align="right">Zip Code</td> | |
<td><input type="text" name="Zip" /></td> | |
</tr> | |
<tr> | |
<td align="right">Country</td> | |
<td> | |
<select name="Country"> | |
<option value="-1" selected>[choose yours]</option> | |
<option value="1">USA</option> | |
<option value="2">UK</option> | |
<option value="3">INDIA</option> | |
</select> | |
</td> | |
</tr> | |
<tr> | |
<td align="right"></td> | |
<td><input type="submit" value="Submit" /></td> | |
</tr> | |
</table> | |
</form> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment