Last active
November 1, 2017 18:19
-
-
Save Sstobo/016b807ca70b5aa5975aa85734d2dd1e to your computer and use it in GitHub Desktop.
[API pull] #api
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('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