Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- </head>
- <body>
- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
- <script>
- $(document).ready(function () {
- var settings = {
- "async": true,
- "crossDomain": true,
- "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¤t_weather=true",
- "method": "GET",
- "datatype": "json"
- }
- $.ajax(settings).done(function (response) {
- console.table(response);
- $("body").html(response);
- });
- });
- </script>
- </body>
- </html>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement