	$(function() {			$.simpleWeather({				location: 'Jaipur, India',				unit: 'C',				success: function(weather) {					$("#weather").append('<h2>'+weather.city+', '+weather.region+' '+weather.country+'</h2>');					$("#weather").append('<p><strong>Today\'s High</strong>: '+weather.high+'&deg; '+weather.units.temp+' - <strong>Today\'s Low</strong>: '+weather.low+'&deg; '+weather.units.temp+'</p>');					$("#weather").append('<p><strong>Current Temp</strong>: '+weather.temp+'&deg; '+weather.units.temp+'</p>');					$("#weather").append('<p><strong>Thumbnail</strong>: <img src="'+weather.thumbnail+'"></p>');					$("#weather").append('<p><strong>Wind</strong>: '+weather.wind.direction+' '+weather.wind.speed+' '+weather.units.speed+' <strong>Wind Chill</strong>: '+weather.wind.chill+'</p>');					$("#weather").append('<p><strong>Currently</strong>: '+weather.currently+' - <strong>Forecast</strong>: '+weather.forecast+'</p>');					$("#weather").append('<p><img src="'+weather.image+'"></p>');					$("#weather").append('<p><strong>Humidity</strong>: '+weather.humidity+' <strong>Pressure</strong>: '+weather.pressure+' <strong>Rising</strong>: '+weather.rising+' <strong>Visibility</strong>: '+weather.visibility+'</p>');					$("#weather").append('<p><strong>Sunrise</strong>: '+weather.sunrise+' - <strong>Sunset</strong>: '+weather.sunset+'</p>');					$("#weather").append('<p><strong>Tomorrow\'s Date</strong>: '+weather.tomorrow.day+' '+weather.tomorrow.date+'<br /><strong>Tomorrow\'s High/Low</strong>: '+weather.tomorrow.high+'/'+weather.tomorrow.low+'<br /><strong>Tomorrow\'s Forecast</strong>: '+weather.tomorrow.forecast+'<br /> <strong>Tomorrow\'s Image</strong>: '+weather.tomorrow.image+'</p>');					$("#weather").append('<p><strong>Last updated</strong>: '+weather.updated+'</p>');					$("#weather").append('<p><a href="'+weather.link+'">View forecast at Yahoo! Weather</a></p>');				},				error: function(error) {					$("#weather").html('<p>'+error+'</p>');				}			});			$.simpleWeather({				zipcode: 'INXX0059',				unit: 'c',				success: function(weather) 
{					$("#weather2").append('<b>Jaipur Weather</b><br>');					$("#weather2").append('');					$("#weather2").append('<b><br><font size="4">'+weather.temp+'&deg;</font> '+weather.units.temp+'</b><br /><span>'+weather.currently+'</span>');				$("#weather2").append('<br>High: '+weather.high+'&deg; '+weather.units.temp+' Low: '+weather.low+'&deg; '+weather.units.temp+'<br>');	 $("#weather2").append('<strong>Forecast</strong>: '+weather.forecast+'<br>');},							error: function(error) {					$("#weather2").html('<p>'+error+'</p>');				}			});		});	

