Skip to content

Instantly share code, notes, and snippets.

@ferblape
Created June 17, 2017 09:35
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ferblape/d855490597f0b774e6911c8ac7324346 to your computer and use it in GitHub Desktop.
Save ferblape/d855490597f0b774e6911c8ac7324346 to your computer and use it in GitHub Desktop.
JQuery free IP geolocation
$(document).ready(function(){
$.getJSON("http://jsonip.com/?callback=?", function (ipData) {
$.getJSON("https://freegeoip.net/json/" + ipData.ip, function (geoData) {
console.log(geoData.city);
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment