From 3d4b9cdb57542add067c207587cade666c3900a3 Mon Sep 17 00:00:00 2001 From: s1n Date: Tue, 8 Oct 2019 19:11:49 -0700 Subject: test if ip works --- ip-detection/js/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); -- cgit v1.2.3