JSFiddle - React, Tailwind, and code Playground
HTML
<button>search</button>
JavaScript
var url='http://rest.users34.interdns.co.uk/index.php?format=json&callback=?';
$('button').click(function(){
$("#results").empty();
$.getJSON(url,function(json){
console.log(json);
$.each(json.posts,function(i,wp){
console.log(wp);
$("#results").html('<p>'+wp.content+'</p>');
});
});
});