Skip to content

Instantly share code, notes, and snippets.

@tborychowski
Created August 22, 2014 12:56
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tborychowski/13be8203fe20e42a9c27 to your computer and use it in GitHub Desktop.
Save tborychowski/13be8203fe20e42a9c27 to your computer and use it in GitHub Desktop.
JS :: user location
$.ajax({ url: '//www.google.com/jsapi', dataType: 'script' }).done(function () {
var addr = google.loader.ClientLocation.address;
console.log(addr);
});
$.getJSON('//freegeoip.net/json/', function(location) {
console.log(location);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment