jquery get ip

Solutions on MaxInterview for jquery get ip by the best coders in the world

showing results for - "jquery get ip"
Mateo
14 Mar 2018
1$.getJSON("https://api.ipify.org/?format=json", function(e) {
2    console.log(e.ip);
3});
4//Not included in the source, "api" can be changed to "api6" for IPv6
5//addresses.