Skip to content

Instantly share code, notes, and snippets.

@kannans
Created September 30, 2016 14:53
Show Gist options
  • Save kannans/9fb7cbb2dc333bea6228e18a3142515c to your computer and use it in GitHub Desktop.
Save kannans/9fb7cbb2dc333bea6228e18a3142515c to your computer and use it in GitHub Desktop.
get country
$.get("http://ipinfo.io", function (response) {
$("#ip").html("IP: " + response.ip);
$("#address").html("Location: " + response.city + ", " + response.region);
$("#details").html(JSON.stringify(response, null, 4));
}, "jsonp");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment