-
Notifications
You must be signed in to change notification settings - Fork 2
/
weather.js
18 lines (16 loc) · 1.18 KB
/
weather.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
function weathr(){
var city=document.getElementById('city').value; link="https://api.openweathermap.org/data/2.5/weather?q="+city+"&units=metric&appid=e8cde246c8e175455f7354975fd34a4a";
$.getJSON(link, function(data) {
document.getElementById('temp').innerHTML= '<br><p>City : ' + city + ' <p>Temperature : '+ Math.floor(data.main.temp) + '℃</p><p>Humidity : '+data.main.humidity+'%</p>';
document.getElementById('img').src='https://raw.githubusercontent.com/Subhash2807/Weather-App-JavaScript/master/icons/' + data.weather[0].icon+'.png';
});
}
function defult(){
var city="Lucknow"; link="https://api.openweathermap.org/data/2.5/weather?q="+city+"&units=metric&appid=e8cde246c8e175455f7354975fd34a4a";
$.getJSON(link, function(data) {
// var temp = Math.floor(data.main.temp);
// $(".temp").append(temp);
document.getElementById('temp').innerHTML= '<br><p>City : ' + city + ' <p>Temperature : '+ Math.floor(data.main.temp) + '℃</p><p>Humidity : '+data.main.humidity+'%</p>';
document.getElementById('img').src='https://raw.githubusercontent.com/Subhash2807/Weather-App-JavaScript/master/icons/' + data.weather[0].icon+'.png';
});
}