JSFiddle - React, Tailwind, and code Playground

by webvitaly

HTML

<link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css">
<div>
    <strong>copied text:</strong> <span class="target-copy">The quick <em>brown fox</em> jumps over the <span style="color:green;">lazy dog</span>.</span>
</div>

<div>
    <strong>pasted text:</strong> <span class="target-paste"></span>
</div>

JavaScript

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