jquery-input-mask-phone-number Jquery xxx-xxx-xxxx Phone format

jquery-input-mask-phone-number Jquery xxx-xxx-xxxx Phone format

by mukkaram waheed

HTML

<script src="//www.addressfinder.co.nz/assets/v2/widget.js"></script>
<!DOCTYPE html>
<html>
    <head>
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
        <script src="https://unpkg.com/[email protected]/dist/jquery-input-mask-phone-number.js"></script>
				   <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
    <script src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/3/jquery.inputmask.bundle.js"></script>



   <script>
    $(":input").inputmask();

   </script>

        <script>

            $(document).ready(function () {
                $('#yourphone').usPhoneFormat({
                    format: '(xxx) xxx-xxxx',
                });
                
                $('#yourphone2').usPhoneFormat();
            });

        </script>
    </head>
    <body>
        <h1>(xxx) xxx-xxxx:</h1>
        <input type='text' id='yourphone' />
        
        <br/>
        <h1>xxx-xxx-xxxx:</h1>
         <input type='text' id='yourphone2' />
				 
				 
    </body>
</html>