function retrieve_zip(callback)
{
try { if(!google) { google = 0; } } catch(err) { google = 0; } // Stupid Exceptions
if(navigator.geolocation) // FireFox/HTML5 GeoLocation
{
navigator.geolocation.getCurrentPosition(function(position)
{
zip_from_latlng(position.coords.latitude,position.coords.longitude,callback);
});
}
else if(google && google.gears) // Google Gears GeoLocation
{
var geloc = google.gears.factory.create('beta.geolocation');
geloc.getPermission();
geloc.getCurrentPosition(function(position)
{
zip_from_latlng(position.latitude,position.longitude,callback);
},function(err){});
}
}
function zip_from_latlng(latitude,longitude,callback)
{
// Setup the Script using Geonames.org's WebService
var script = document.createElement("script");
script.src = "http://ws.geonames.org/findNearbyPostalCodesJSON?lat=" + latitude + "&lng=" + longitude + "&callback=" + callback;
// Run the Script
document.getElementsByTagName("head")[0].appendChild(script);
}
function example_callback(json)
{
// Now we have the data! If you want to just assume it's the 'closest' zipcode, we have that below:
zip = json.postalCodes[0].postalCode;
alert(zip);
}
retrieve_zip("example_callback"); // Alert the User's Zipcode
$.simpleWeather({
zipcode: '02118',
unit: 'f',
success: function(weather) {
html = '<h2>Right now in fucking '+weather.city+', '+weather.region+'...</h2>';
html += '<img style="float:left;" width="125px" src="http://f.cl.ly/items/3f2C2x2P1J0W0s39051z/noun_project_2636.svg">';
html += '<p>It\'s fucking '+weather.temp+'° '+weather.units.temp+'<br /><span>And fucking '+weather.currently+'</span></p>';
html += '<h3>High: goddamn '+weather.high+'°<br/>Low: goddamn '+weather.low+'°</h3>';
$("#weather").html(html);
},
error: function(error) {
$("#weather").html('<p>'+error+'</p>');
}
});
Please Whitelist JSFiddle in your content blocker.
Help keep JSFiddle free for always by one of two ways:
Whitelist JSFiddle in your content blocker (two clicks)
Go PRO and get access to additional PRO features →
Join the 4+ million users, and keep the JSFiddle dream alive.
Ad-free
All ads in the editor and listing pages are turned completely off.
Use pre-released features
You get to try and use features (like the Palette Color Generator) months before everyone else.
Fiddle collections
Sort and categorize your Fiddles into multiple collections.
Private collections and fiddles
You can make as many Private Fiddles, and Private Collections as you wish!
Console
Debug your Fiddle with a minimal built-in JavaScript console.