openclassify/addons/default/visiosoft/base-theme/resources/js/phonefield.js
2020-02-10 09:40:56 +03:00

16 lines
588 B
JavaScript

// Personal Registration
var inputQueries = document.querySelectorAll("input[name=\"phone\"]");
inputQueries.forEach(function (inputQuery, key) {
var iti = intlTelInput(inputQuery, {
hiddenInput: "full_phone",
class:"form-control",
initialCountry: "auto",
geoIpLookup: function (success, failure) {
$.get("https://ipinfo.io", function () {
}, "jsonp").always(function (resp) {
var countryCode = (resp && resp.country) ? resp.country : "";
success(countryCode);
})
}
})
});