File: /home/awaldron/www/archive/blueliner/include/js/unobtrusive-validation/hidden/default.htm
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Javascript Form</title>
<script type="text/javascript" src="validate.js"></script>
<script type="text/javascript" src="submitvalidate.js"></script>
<link rel="stylesheet" type="text/css" media="screen"
href="formstyle.css" title="default" />
</head>
<body>
<fieldset>
<legend>El Form</legend>
<form name="form1" id="form1" method="post" action="#" >
<table width="555">
<tr>
<td>
<input type="hidden" name="required" id="required" value="name,emailaddress" />
<input type="hidden" name="additional" id="additional" value="emailaddress/email,zipcode/zip" /></td>
</tr>
<tr>
<td width="186">Full Name (any val) </td>
<td width="146"><input type="text" name="name" tabindex="1" id="name" /></td>
<td id="namemsg" class="rules">Required</td>
</tr>
<tr>
<td>Zipcode </td>
<td><input type="text" name="zipcode" tabindex="2" id="zipcode" /></td>
<td id="zipcodemsg" class="rules"></td>
</tr>
<tr>
<td>Email </td>
<td><input type="text" name="emailaddress" tabindex="2" id="emailaddress" /></td>
<td id="emailaddressmsg" class="rules">Required</td>
</tr>
<tr>
<td></td>
<td></td>
<td><input type="submit" name="Submit" value="Submit" tabindex="9" />
</td>
</tr>
</table>
</form>
</fieldset>
</body>
</html>