Skip to content

Instantly share code, notes, and snippets.

@spsaucier
Created July 20, 2013 06:24
Show Gist options
  • Select an option

  • Save spsaucier/6044067 to your computer and use it in GitHub Desktop.

Select an option

Save spsaucier/6044067 to your computer and use it in GitHub Desktop.
Form with jQuery Number Verification
<div id="MyForm">
<form method="POST" name="info-form">
<input type="hidden" value="/form-sent" name="returnURL" />
<label for="First Name">First Name: </label>
<input type="text" name="First Name" maxlength="40" />
<label for="Last Name">Last Name: </label>
<input type="text" name="Last Name" maxlength="80" />
<label>Enter the below number: </label>
<input type="hidden" value="701469" id="verifyNumHidden" name="verifyNumHidden" />
<input type="text" id="enterVerify" name="enterVerify" />
<div id="verifyNum"></div>
<input type="submit" value="Submit" name="save" class="cat_button" />
</form>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment