Advertisement
Socialking

Untitled

Oct 23rd, 2022
752
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.86 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5. </head>
  6.  
  7. <body>
  8.       <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
  9.       <script>
  10.             $(document).ready(function () {
  11.                   var settings = {
  12.                         "async": true,
  13.                         "crossDomain": true,
  14.                         "url": "https://api.open-meteo.com/v1/forecast?latitude=52.2297&longitude=21.0122&hourly=temperature_2m,rain,winddirection_80m,temperature_80m,soil_temperature_0cm&current_weather=true",
  15.                        "method": "GET",
  16.                        "datatype": "json"
  17.                  }
  18.                  $.ajax(settings).done(function (response) {
  19.                        console.table(response);
  20.                         $("body").html(response);
  21.                   });
  22.  
  23.             });
  24.       </script>
  25. </body>
  26.  
  27. </html>
  28.  
  29. </html>
  30.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement