Skip to content

Instantly share code, notes, and snippets.

@drugoi
Last active August 29, 2015 14:01
Show Gist options
  • Save drugoi/71008ee6c12d3d28eddc to your computer and use it in GitHub Desktop.
Save drugoi/71008ee6c12d3d28eddc to your computer and use it in GitHub Desktop.
isKazakhstan
var isKazakhstan = function() {
$.get("//ipinfo.io", function(response) {
if (response.country == 'KZ') console.log('Congrats! You\'re from greatest country in the world!');
}, "jsonp");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment