JSFiddle - React, Tailwind, and code Playground
HTML
<div id="Content">
</div>
JavaScript
$.getJSON('http://whateverorigin.org/get?url=' +
encodeURIComponent('http://google.com') + '&callback=?',
function(data){
$("#Content").html(data.contents);
});