function start() { if (navigator.geolocation) { navigator.geolocation.getCurrentPosition(liveMap,error); } else { $("#info").show(); $("#map2").hide(); } } function error(msg) { $("#info").show(); $("#map2").hide(); } function liveMap(position) { latitude = position.coords.latitude; longitude = position.coords.longitude; $.getScript("live/live_helper.php?latitude=" + latitude + "&longitude=" + longitude); } function reMap(coords) { $.getScript("live/remap.php?coords=" + coords); }