Created
May 16, 2011 03:48
-
-
Save danesparza/973900 to your computer and use it in GitHub Desktop.
jQuery validation - HTML
This file contains 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
<div id="content" style="padding: 10px;"> | |
<form id="frmTest" method="get"> | |
Lots of other content here<br /> | |
Lots of other content here<br /> | |
Lots of other content here<br /> | |
Lots of other content here<br /> | |
Lots of other content here<br /> | |
Lots of other content here<br /> | |
<input id="txtEmail" name="txtEmail" type="text" class="required email"/> | |
<br /> | |
<input id="txtName" name="txtName" type="text" class="required" minlength="2"/> | |
<br /> | |
Other content | |
<br /> | |
<button id="btnValidate" type="button">Test validation</button> | |
</form> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment