wefra/lib/intl-tel-input-master/examples/gen/js/defaultCountryIp.js

12 lines
425 B
JavaScript
Raw Normal View History

var input = document.querySelector("#phone");
window.intlTelInput(input, {
initialCountry: "auto",
geoIpLookup: function(callback) {
$.get('https://ipinfo.io', function() {}, "jsonp").always(function(resp) {
var countryCode = (resp && resp.country) ? resp.country : "";
callback(countryCode);
});
},
utilsScript: "../../build/js/utils.js?1541153396801" // just for formatting/placeholders etc
});