16825 |
efrain |
1 |
var inputHome = document.querySelector("#home");
|
|
|
2 |
var inputMobile = document.querySelector("#mobile");
|
|
|
3 |
|
|
|
4 |
window.intlTelInput(inputHome, {
|
|
|
5 |
initialCountry: 'gb',
|
|
|
6 |
placeholderNumberType: 'FIXED_LINE',
|
|
|
7 |
utilsScript: "../../build/js/utils.js?<%= time %>" // just for formatting/placeholders etc
|
|
|
8 |
});
|
|
|
9 |
window.intlTelInput(inputMobile, {
|
|
|
10 |
initialCountry: 'gb',
|
|
|
11 |
placeholderNumberType: 'MOBILE',
|
|
|
12 |
utilsScript: "../../build/js/utils.js?<%= time %>"
|
|
|
13 |
});
|