Skip to content

Instantly share code, notes, and snippets.

@ericelliott
Created October 6, 2010 05:47
Show Gist options
  • Save ericelliott/612886 to your computer and use it in GitHub Desktop.
Save ericelliott/612886 to your computer and use it in GitHub Desktop.
<input class="h5-phone" id="phone" name="phone" type="text" placeholder="555-555-5555" title="555-555-5555" />
$(document).ready(function () {
$.h5Validate.addPatterns({
phone: /([\+][0-9]{1,3}([ \.\-])?)?([\(]{1}[0-9]{3}[\)])?([0-9A-Z \.\-]{1,32})((x|ext|extension)?[0-9]{1,4}?)/
});
$(form).h5Validate();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment