Using jQuery, this line will display your user’s country code.
$.getJSON('https://freegeoip.net/json/', function(result) {
alert(result.country_code);
});
Using jQuery, this line will display your user’s country code.
$.getJSON('https://freegeoip.net/json/', function(result) {
alert(result.country_code);
});