Skip to content

Instantly share code, notes, and snippets.

@jonathanwork
Created April 28, 2017 02:13
Show Gist options
  • Save jonathanwork/a82980e2f5a9e7ab78e2550e848ca767 to your computer and use it in GitHub Desktop.
Save jonathanwork/a82980e2f5a9e7ab78e2550e848ca767 to your computer and use it in GitHub Desktop.
get clients ip geolocation.
$(document).ready(function () {
$.getJSON("https://jsonip.com/?callback=?", function (data) {
console.log(data);
alert(data.ip);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment