🔰 AD FREE CONTENT ðŸ”°

Click the button Check to continue

Check

var x = document.getElementById(“demo”);

function getLocation() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(showPosition);
} else {
x.innerHTML = “Function is not supported by this browser.”;
}
}

function showPosition(position) {
x.innerHTML = “Latitude: ” + position.coords.latitude +

Longitude: ” + position.coords.longitude;
}


Design a site like this with WordPress.com
Get started