Skip to content

levraipixel/international-phone-number

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

international-phone-number

AngularJS directive implementing intl-tel-input (https://github.com/Bluefieldscom/intl-tel-input) jQuery plugin.

Installation

install via bower: bower install international-phone-number --save add module dependcy to application: internationalPhoneNumber

DEMO

Available from souce project at http://jackocnr.com/intl-tel-input.html

Default options

Same as in source project (https://github.com/Bluefieldscom/intl-tel-input)

Sneak preview:

    options =
      autoFormat:         true
      autoHideDialCode:   true
      defaultCountry:     ''
      nationalMode:       false
      numberType:         ''
      onlyCountries:      undefined
      preferredCountries: ['us', 'gb']
      responsiveDropdown: false
      utilsScript:        ""

Usage

Works for text and tel input types. NgModel is required

<input type="text" international-phone-number ng-model="phone">

with preferred countries:

<input type="text" international-phone-number preferred-countries="pl, de" ng-model="phone">

with default country:

<input type="text" international-phone-number default-country="pl" ng-model="phone">

with only contries:

<input type="text" international-phone-number only-countries ng-model="phone">

Feel free to mix options together:

<input type="text" international-phone-number only-countries="pl, de, en, es" default-country="pl" preferred-countries="pl, de" ng-model="phone">

About

AngularJS directive implementing intl-tel-input (https://github.com/Bluefieldscom/intl-tel-input)

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • CoffeeScript 100.0%