Skip to content

Instantly share code, notes, and snippets.

@bran921007
Created February 7, 2015 22:35
Show Gist options
  • Save bran921007/89b0a7523c4a5052f209 to your computer and use it in GitHub Desktop.
Save bran921007/89b0a7523c4a5052f209 to your computer and use it in GitHub Desktop.
Detectar país del usuario con jQuery
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>
$.getJSON('http://api.wipmania.com/jsonp?callback=?', function (data) {
alert('País: ' + data.address.country);
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment