JSFiddle - React, Tailwind, and code Playground
by Johan Muller
HTML
<div id="cnt">
</div>
<a id="load" href="#">load</a>
CSS
#cnt {
width: 200px;
height: 200px;
border: 1px solid red;
}
JavaScript
$('#load').click(function(e){
$('#cnt').load('http://iccpr.ru/h/index.html');
});