Skip to content

Instantly share code, notes, and snippets.

@khoand0000
Created November 22, 2015 06:53
Show Gist options
  • Save khoand0000/f16b14e553f34c3f7c1d to your computer and use it in GitHub Desktop.
Save khoand0000/f16b14e553f34c3f7c1d to your computer and use it in GitHub Desktop.
validate phone input
        $(":input[type=tel]").inputmask("0999-999-999[9]");
  <input type="tel" class="form-control" id="contact-phone" name="contact_phone"
         pattern="0[0-9]{3}\-[0-9]{3}\-[0-9]{3,4}"
         placeholder="Phone" required>
v::attribute('contact_phone', v::regex('#^0[0-9]{3}\-[0-9]{3}\-[0-9]{3,4}$#mius'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment