JSFiddle - React, Tailwind, and code Playground
HTML
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>
JavaScript
//$("#help").text("eyal");
/*$.get("http://where.yahooapis.com/geocode", {
q: "32.183963,+34.874688",
flags: "J",
gflags: "R",
appid: "[yourappidhere]"
});*/
$.getJSON('http://where.yahooapis.com/geocode?q=32.183963,+34.874688&flags=J&gflags=R&appid=YahooDemo&callback=?', function(data) {
alert("Data Saved: " + data);
});
$.getJSON('http://search.yahooapis.com/NewsSearchService/V1/newsSearch?appid=YahooDemo&query=market&results=2&language=en&output=json&callback=?',
function(data){
alert(data);
$.each(data.ResultSet.Result, function(index, value){
alert("Result #"+index+": "+value.Title+" url: "+value.Url);
});
return false;
});