JSFiddle - React, Tailwind, and code Playground
HTML
<div class="price">
loading
</div>
JavaScript
var quote;
$(document).ready(function() {
var url = "https://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20yahoo.finance.quotes%20where%20symbol%3D%22AAPL%22&format=json&diagnostics=true&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys";
$.getJSON(url + "?callback=?", null, function(result) {
console.log(result);
//$(".price").text("$" + data.query.results.quote.AskRealtime);
});
});