2010-10-19 20:58:01 -07:00
|
|
|
|
|
|
|
if(navigator.geolocation) {
|
|
|
|
navigator.geolocation.getCurrentPosition(function(position) {
|
2011-01-05 02:32:18 -08:00
|
|
|
$('#jot-coord').val(position.coords.latitude + ' ' + position.coords.longitude);
|
2010-10-20 00:33:17 -07:00
|
|
|
$('#profile-nolocation-wrapper').show();
|
2010-10-19 20:58:01 -07:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|