diff options
Diffstat (limited to 'ip-detection/js')
| -rw-r--r-- | ip-detection/js/main.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ip-detection/js/main.js b/ip-detection/js/main.js index 28a66dc..ce117d8 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); - $("#address").html("Location: " + response.city + ", " + response.region); + $("#ip").html(response.ip); + $("#address").html(response.city + ", " + response.region); $("#details").html(JSON.stringify(response, null, 4)); -}, "jsonp");
\ No newline at end of file +}, "jsonp"); |