Mistpark/view/jot_geotag.tpl
2010-10-19 20:58:01 -07:00

8 lines
188 B
Smarty

if(navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(position) {
$('#jot-coord').val(position.coords.latitude + ',' + position.coords.longitude);
});
}