Skip to content

Instantly share code, notes, and snippets.

@yokesharun
Created February 8, 2016 13:30
Show Gist options
  • Save yokesharun/3c3455776c1204defa3e to your computer and use it in GitHub Desktop.
Save yokesharun/3c3455776c1204defa3e to your computer and use it in GitHub Desktop.
Get your ip with Jquery
$.get("http://ipinfo.io", function(response) {
alert(response.ip);
}, "jsonp");
$(document).ready(function () {
$.getJSON("http://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