JSFiddle - React, Tailwind, and code Playground
by VesQ
HTML
<div></div>
JavaScript
var html = '<p>Hello, there!</p>';
$.ajax('/echo/html/', {
type: 'POST',
data: html,
success: (function (data) {
$('div').append(data);
})
}