JSFiddle - React, Tailwind, and code Playground
by rodrigonery
HTML
<div id="weather-temp"></div>
JavaScript
$.ajax({
url: "https://api.twitter.com/1.1/statuses/home_timeline.json",
data: data,
success: function( data ) {
$( "#weather-temp" ).html( "<strong>" + data + "</strong> degrees" );
}
});