JSFiddle - React, Tailwind, and code Playground
HTML
<div class="weatherContainer"></div>
JavaScript
var container = $('.weatherContainer');
var url = 'http://free.worldweatheronline.com/feed/weather.ashx?q=Tampere&format=json&num_of_days=2&key=a84523bbed133415120701&callback=?';
$.getJSON(url, function(w) {
var contents = "<div class='c'>";
$.each(w.data.weather, function(i, action) {
contents += "<section>" + action.tempMaxC + "</section>";
});
contents += "</div>";
container.append(contents);
});