Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. <div id="data">
  2. </div>
  3. <input type="text" value="Which city are you in?">
  4. <input type="button" value ="Submit" onclick="findWeather()">
  5.  
  6. function findWeather() {
  7. $.get("http://api.openweathermap.org/data/2.5/forecast?q=Eindhoven&appid=*My_APP_ID*",
  8. function () {
  9. document.getElementById("data").innerHTML = data.list.main.temp;
  10. })
  11. }
  12.  
  13. function findWeather(){
  14. $.get("http://api.openweathermap.org/data/2.5/forecast?q=Eindhoven&appid=*My_APP_ID*",
  15. function(data) {
  16. document.getElementById("data").innerHTML = data.list.main.temp;
  17. })
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement