summaryrefslogtreecommitdiff
path: root/ip-detection/js/main.js
blob: 28a66dc25ecaa10080b19c987cdb1c9c49b40474 (plain) (blame)
1
2
3
4
5
$.get("https://ipinfo.io/json", function (response) {
    $("#ip").html("IP: " + response.ip);
    $("#address").html("Location: " + response.city + ", " + response.region);
    $("#details").html(JSON.stringify(response, null, 4));
}, "jsonp");