Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var lampo = "";
  2.  
  3. $(function() {
  4.   $("#search").click(function() {
  5.     var paikkakunta = $("#paikkakunta").val();
  6.  
  7.     $.ajax({
  8.       url: "openweathermap.php",
  9.       method: "GET",
  10.       data: {
  11.         "paikkakunta": paikkakunta
  12.       },
  13.       success: function(result) {
  14.         tulosta(result);
  15.       },
  16.       error: function(xhr) {
  17.         alert("Virhe: " + xhr.status + " " + xhr.statusText);
  18.       }
  19.  
  20.  
  21.     });
  22.   });
  23. });
  24.  
  25.  
  26.  
  27. function tulosta(result) {
  28.   console.log(result)
  29.   lampo = Number(result.main.temp) - Number(273.15);
  30.   $("#tulostus").html(lampo + " C");
  31.  
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement