JSFiddle - React, Tailwind, and code Playground
by ipr101
HTML
<span>hello</span>
<div class="className">
content in here
</div>
JavaScript
alert($('.className').clone().wrap('<div></div>').parent().html());
by ipr101
<span>hello</span>
<div class="className">
content in here
</div>
alert($('.className').clone().wrap('<div></div>').parent().html());