Skip to content

Instantly share code, notes, and snippets.

@pablocortez
Created August 9, 2016 04:06
Show Gist options
  • Save pablocortez/22da3d18227b474f993b43ebec0786eb to your computer and use it in GitHub Desktop.
Save pablocortez/22da3d18227b474f993b43ebec0786eb to your computer and use it in GitHub Desktop.
// GET LOCATION
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(position) {
$("#data").html("latitude: " + position.coords.latitude + "<br>longitude: " + position.coords.longitude);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment