$.simpleWeather({zipcode:'88001',unit:'f',success:function(weather){html='<p id="the-weather"><a href="'+weather.link+'" target="_blank"><img src="'+weather.thumbnail+'" width="61" height="34" />'+weather.currently+' '+weather.temp+'&deg; / Wind '+weather.wind.speed+' '+weather.units.speed+'</p>';$("#weather").html(html);},error:function(error){$("#weather").html("<p>"+error+"</p>");}});
