JSFiddle - React, Tailwind, and code Playground
by blashadow
JavaScript
$.ajax({
url: "http://heracle.hitmetheapp.com/service/comment/12/token",
// the name of the callback parameter, as specified by the YQL service
jsonp: "callback",
// tell jQuery we're expecting JSONP
dataType: "jsonp",
// work with the response
success: function( response ) {
console.log( response ); // server response
}
});