Skip to content

Instantly share code, notes, and snippets.

@Adoonq
Last active May 26, 2018 05:37
Show Gist options
  • Select an option

  • Save Adoonq/0b1559811873b4775d60954a66346451 to your computer and use it in GitHub Desktop.

Select an option

Save Adoonq/0b1559811873b4775d60954a66346451 to your computer and use it in GitHub Desktop.
Определение страны по ip пользователя
$.getJSON('https://ipinfo.io', function(data){
if(data) {
switch (data.country) {
case 'UA': alert('Ukraine');
break;
case 'RU': alert('Russia');
break;
default:
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment