JSFiddle - React, Tailwind, and code Playground

HTML

<textarea id="status"></textarea>

CSS

textarea {
    width: 100%;
    height: 400px;
}

JavaScript

var urlToWebservice = "http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20html%20where%20url%3D%22http%3A%2F%2Fapi.nytimes.com%2Fsvc%2Fsemantic%2Fv2%2Fconcept%2Farticle%2F2010%2F10%2F06%2Fbusiness%2Fmedia%2F06tribune.json%3F%26fields%3Darticle_list%26api-key%3D4949d84e6ed8e55dbd7352d88da21f6d%3A9%3A65735612%22%20and%20xpath%3D'%2F%2Fp'&format=json";

var result;

$.ajax({
    type: "GET",
    url: urlToWebservice,
    contentType: "application/json; charset=utf-8",
    dataType: "jsonp",
    success: function(data) {
        result = JSON.stringify(data);
        document.getElementById('status').value = result;
    }
});