Guest User

Untitled

a guest
Feb 19th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. $(document).ready(function(){
  2. var latitude = '';
  3. var longitude = '';
  4. navigator.geolocation.getCurrentPosition(function(position) {
  5. latitude = position.coords.latitude;
  6. longitude = position.coords.longitude;
  7. console.log('lat=' + latitude + ' long=' + longitude);
  8. });
  9. });
Add Comment
Please, Sign In to add comment