diff options
| author | s1n <[email protected]> | 2019-11-04 13:33:00 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2019-11-04 13:33:00 -0800 |
| commit | 2f261f1e1078b7fd92213f7afeedd325460d2469 (patch) | |
| tree | 1a521d7a338f80684e4bd7891378f37cd996e30d /ip-detection | |
| parent | Update index.html (diff) | |
| download | s1n.pw-admin-2f261f1e1078b7fd92213f7afeedd325460d2469.tar.xz s1n.pw-admin-2f261f1e1078b7fd92213f7afeedd325460d2469.zip | |
Update main.js
Diffstat (limited to 'ip-detection')
| -rw-r--r-- | ip-detection/js/main.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ip-detection/js/main.js b/ip-detection/js/main.js index 28a66dc..3589d70 100644 --- a/ip-detection/js/main.js +++ b/ip-detection/js/main.js @@ -1,5 +1,5 @@ $.get("https://ipinfo.io/json", function (response) { - $("#ip").html("IP: " + response.ip); + $("#ip").html(response.ip); $("#address").html("Location: " + response.city + ", " + response.region); $("#details").html(JSON.stringify(response, null, 4)); -}, "jsonp");
\ No newline at end of file +}, "jsonp"); |