Lightweight jQuery Input Mask Plugin For Phone Numbers

File Size: 5.95 KB
Views Total: 51424
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   
Lightweight jQuery Input Mask Plugin For Phone Numbers

This is a lightweight (less than 2kb) and easy-to-use jQuery input mask plugin to mask and validate US (or international) phone numbers in standard input fields.

See also:

How to use it:

1. Download, unzip the plugin and then insert the JavaScript jquery-input-mask-phone-number.js after jQuery JavaScript library.

<script src="/path/to/cdn/jquery.min.js"></script>
<script src="/path/to/jquery-input-mask-phone-number.js"></script>

2. Create a normal text field for the telephone input.

<input type="text" id="yourphone">

3. Call the function on the input field to mask and format the strings you typed in xxx-xxx-xxxx format.

$(function(){

  $('#yourphone').usPhoneFormat();

});

4. Customize the format for phone numbers.

$(function(){

  $('#yourphone').usPhoneFormat({
    format: '(xxx) xxx-xxxx'
  });

});

Changelog:

2020-11-02

  • Add support for macOS Command key

2020-08-22

  • Fixed Tab issue

2020-08-10

  • Bugs fixed

2020-05-13

  • Added touchend

2019-04-09

  • Phone mask updated

2018-10-30

  • Fixed Mozilla Firefox backspace issue

This awesome jQuery plugin is developed by rajaramtt. For more Advanced Usages, please check the demo page or visit the official website.