geolocation not working always ...can anyone fix ? please ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

geolocation not working always ...can anyone fix ? please ?

14th Jun 2018, 9:39 AM
shutthe
3 Answers
+ 2
<!DOCTYPE html> <html> <body> <p>Click the button to get your coordinates.</p> <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> </body> </html>
16th Jun 2018, 11:44 AM
shutthe
0
Hi Anirudh! Are you referring to your own code? I don't see it linked here. Best, -- Janning.
16th Jun 2018, 11:42 AM
Janning
Janning - avatar
0
it is the code i used.....
16th Jun 2018, 11:44 AM
shutthe