HTML5 GEOLOCATION - Deferred look up country code via multiple geolocation webapis
now working
by bizamajig
JavaScript
// if (navigator.geolocation) {
// navigator.geolocation.getCurrentPosition(function(position) {
$.getJSON('http://ws.geonames.org/countryCode', {
lat: position.coords.latitude,
lng: position.coords.longitude,
type: 'JSON'
}, function(result) {
alert('Country: ' + result.countryName + '\n' + 'Code: ' + result.countryCode);
$('#newURL').attr('href','https://www.google.com&jobid='+result.countryCode);
});
// });
// }