JSFiddle - React, Tailwind, and code Playground
HTML
<button>Get Score</button>
<div></div>
JavaScript
$('button').click(function(){
$.ajax({
url: 'http://json-cricket.appspot.com/score.json',
dataType: 'jsonp',
success: function (data) {
$('div').html(JSON.stringify(data));
}
});
})