diff options
| -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)); |