Guest User

Untitled

a guest
Jul 20th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. var locationButton = $('#send-location');
  2. locationButton.on('click', function() {
  3. if (!navigator.geolocation) {
  4. return alert('Geolocation not supported by your browser');
  5. }
  6.  
  7. navigator.geolocation.getCurrentPosition(
  8. function(position) {
  9. console.log(position);
  10. },
  11. function() {
  12. alert('Unable to fetch location');
  13. }
  14. );
  15. });
Add Comment
Please, Sign In to add comment