diff options
| author | s1n <[email protected]> | 2019-10-08 19:11:49 -0700 |
|---|---|---|
| committer | s1n <[email protected]> | 2019-10-08 19:11:49 -0700 |
| commit | 3d4b9cdb57542add067c207587cade666c3900a3 (patch) | |
| tree | e86756de1829763e7d0948584262275e49e29241 | |
| parent | no text highlighting and formatting on dino (diff) | |
| download | s1n.pw-admin-3d4b9cdb57542add067c207587cade666c3900a3.tar.xz s1n.pw-admin-3d4b9cdb57542add067c207587cade666c3900a3.zip | |
test if ip works
| -rw-r--r-- | ip-detection/js/main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ip-detection/js/main.js b/ip-detection/js/main.js index 28a66dc..9f6c6ec 100644 --- a/ip-detection/js/main.js +++ b/ip-detection/js/main.js @@ -1,4 +1,4 @@ -$.get("https://ipinfo.io/json", function (response) { +$.get("http://ipinfo.io", function (response) { $("#ip").html("IP: " + response.ip); $("#address").html("Location: " + response.city + ", " + response.region); $("#details").html(JSON.stringify(response, null, 4)); |