top of page
CODE
import { fetch } from 'wix-fetch';
$w.onReady(function () { });
function getIP(){
fetch('https://extreme-ip-lookup.com/json', {
method: 'get'
})
.then((httpResponse) => {
if (httpResponse.ok) {
return httpResponse.json();
}
})
.then((json) => {
const ipAddress = json.query;
const country = json.country;
const city = json.city;
$w("#TXTip").text = "Your Current IP Address Is: " + ipAddress + " located in " + city + ", " + country;
return ipAddress;
});
}
bottom of page