Skip to content

Instantly share code, notes, and snippets.

@jimmy89Li
Last active August 31, 2016 09:23
Show Gist options
  • Save jimmy89Li/5eec9aef9aff458acb1975fb17bdc074 to your computer and use it in GitHub Desktop.
Save jimmy89Li/5eec9aef9aff458acb1975fb17bdc074 to your computer and use it in GitHub Desktop.
Get the Celsius degrees for a specific city
$.getJSON('http://api.wunderground.com/api/API_KEY/conditions/q/CITY_NAME.json', function(Weather) {
var weatherInfo = Weather.current_observation;
console.log(weatherInfo.temp_c);
document.getElementById('weatherTempC').innerHTML = weatherInfo.temp_c;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment