JSFiddle - React, Tailwind, and code Playground
JavaScript
function checkUni() {
var URL = "http://query.yahooapis.com/v1/public/yql?q=select%20item%20from%20weather.forecast%20where%20location%3D%2248907%22&format=json";
var ret = $.getJSON(URL,"",function(data){
alert("success");
console.log(data)
});
}
checkUni();