I need some help from the JS experts here, I need to make this javascript fill the latitude and longitude values into two form fields instead of printing it onto the div tags like it does as it is now.
<button onclick="getLocation()">Try It</button>
<p id="demo"></p>
<script>
var x = document.getElementById("demo");
function getLocation() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(showPosition);
} else {
x.innerHTML = "Geolocation is not supported by this browser.";
}
}
function showPosition(position) {
x.innerHTML = "Latitude: " + position.coords.latitude +
"<br>Longitude: " + position.coords.longitude;
}
</script>
The form fields have the id ‘lat’ and ‘lon’. I no clue on how to make the values being filled into the form when body load or by clicking the button. Hopefully someone can help me!
Thanks