JSFiddle - React, Tailwind, and code Playground
by dirtyd77
HTML
<div class='wrapper'>
<p>html</p>
</div>
CSS
body {
font-family: Helvetica, Sans, Arial;
}
p, ul {
padding: 10px;
}
ul {
margin: 5px;
border: 2px dashed #999;
}
JavaScript
$.ajax({
type: 'POST',
dataType: 'html',
url: '/echo/html/',
data: {
html: "<div class = 'Post'> content goes here </div>",
delay: 0
}
}).success(function (data){
$('.wrapper').html(data);
});