var geoopt={ enableHighAccuracy: false, maximumAge: 3600000, timeout: 27000 }; function getLocation() { if (navigator.geolocation) { navigator.geolocation.getCurrentPosition(showPosition, geoerror, geoopt); } else { $.ajax({ url: '/js/setlatlon.php?lat=' +39.96138 + '&lon=' +-82.997749, type: "GET", async: false, success: function (ergebnis) { } }); } } function geoerror() { $.ajax({ url: '/js/setlatlon.php?lat=' +39.96138 + '&lon=' +-82.997749, type: "GET", async: false, success: function (ergebnis) { } }); } function showPosition(position) { $.ajax({ url: '/js/setlatlon.php?lat=' + position.coords.latitude + '&lon=' + position.coords.longitude, type: "GET", async: false, success: function (ergebnis) { location.reload(); } }); } getLocation();