Skip to content

Instantly share code, notes, and snippets.

@Sstobo
Last active November 1, 2017 18:19
Show Gist options
  • Save Sstobo/016b807ca70b5aa5975aa85734d2dd1e to your computer and use it in GitHub Desktop.
Save Sstobo/016b807ca70b5aa5975aa85734d2dd1e to your computer and use it in GitHub Desktop.
[API pull] #api
$('button').on('click', function() {
$.ajax({
method: 'GET',
url: 'https://api.openweathermap.org/data/2.5/weather?q=Vancouver,ca&appid=4a48e1e1428fd83889074671fbf259d9'
})
.done(function(data) {
console.log(data)
$('.weather').append("City: " + data.name + "</br>" + "Wind Speed: " + data.wind.speed + "</br>" + "Clouds: " + data.weather[0].description);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment