Skip to content

Instantly share code, notes, and snippets.

@yokesharun
yokesharun / get_ip_address.js
Created February 8, 2016 13:30
Get your ip with Jquery
$.get("http://ipinfo.io", function(response) {
alert(response.ip);
}, "jsonp");
@Alaaba98
Alaaba98 / get_ip_address.js
Created October 20, 2018 19:17 — forked from yokesharun/get_ip_address.js
Get your ip with Jquery
$.get("http://ipinfo.io", function(response) {
alert(response.ip);
}, "jsonp");