Plz help meeeeeeeee i dont get it

Tell us what’s happening:
IT NO WORKING PLZZZZZZZZZ
I DONT KNOW WHAT IS WRONG

Your code so far


<script>
if(navigator.geolocation) {
  navigator.geolocation.getCurrentPosition(function(position) {
    document
      .getElementById("data")
      .innerHTML = 
        "latitude: " + position.coords.latitude +
        "<br>longitude: " + position.coords.longitude
  })
}
</script>
<h4>You are here:</h4>
<div id="data">

</div>


Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:78.0) Gecko/20100101 Firefox/78.0.

Challenge: Get Geolocation Data to Find A User’s GPS Coordinates

Link to the challenge:

i got it

if(navigator.geolocation){

navigator.geolocation.getCurrentPosition(function(position){

document.getElementById("data").innerHTML="latitude: " + position.coords.latitude + "<br>longitude: " + position.coords.longitude

})

}
2 Likes

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).

I have also blurred your solution, as posting full working solutions can be a spoiler. We want to keep the forums as spoiler-free as possible, so users can get answers to questions without being given the solution (especially unintentionally). :slight_smile: