<html>
<head>
<title>HTML Frames Example - Content</title>
<link href="css/style.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../formvalidator/chars/jsafv_messages.js"></script>
<script type="text/javascript" src="../formvalidator/chars/diactric_chars_utf8.js"></script>
<script type="text/javascript" src="../formvalidator/form.scripts.js"></script>
<script type="text/javascript">
var jsFormValidator = new FormValidator();
</script>
<script type='text/javascript' src='js/general.js'></script>
</head>
<body>
<h4>Validation of "alphabetic" fields</h4>
<form name="frmTest" action="result.html" method="get" style="padding:5px;">
<table cellSpacing="0" cellPadding="0" border="0" valign="top">
<tbody>
<tr>
<td align="left">Alphabetic #1<font color="#ff0000">*</font> (raAlpha):</td>
<td width="8"> </td>
<td align="left"><input size="18" title="Alphabetic #1" type="text" maxLength="25" name="raAlpha"> <label class='note'>Required field. Type: alphabetic.</label></td>
<td width="8"> </td>
</tr>
<tr>
<td align="left">Alphabetic #2 (salAlpha):</td>
<td width="8"> </td>
<td align="left"><input size="18" title="Alphabetic #2" type="text" maxLength="25" name="salAlpha"> <label class='note'>Optional field. Type: alphabetic. Sub-type: lower.</label></td>
<td width="8"> </td>
</tr>
<tr><td colSpan="4"> </td></tr>
<tr>
<td align="middle" colSpan="7">
<input type="reset" value="Reset" name="butReset" />
<input onclick="return jsFormValidator.onSubmitCheck(document.forms['frmTest'])" type="submit" value="Submit" name="butRegister">
</td>
</tr>
</tbody>
</table>
</form>
<hr>
<h4>Code</h4>
<pre>
<INPUT type="text" name="raAlpha" title="Alphabetic #1" maxLength="25" />
<INPUT type="text" name="salAlpha" title="Alphabetic #2" maxLength="25" />
</pre>
</body>
</html> |