JSFiddle - React, Tailwind, and code Playground

by webvitaly

HTML

<p>
    <strong>copied html:</strong> <span class="target-copy">The quick <em>brown fox</em> jumps over the <span style="color:green;">lazy dog</span>.</span>
</p>

<p>
    <strong>pasted html:</strong> <span class="target-paste"></span>
</p>

JavaScript

$(function(){
    var html = $('.target-copy').html(); // copy html
    $('.target-paste').html( html ); // paste html
});