JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.4/themes/ui-lightness/jquery-ui.css">
<div id='div1'></div>
<div id='div2'></div>

CSS

div {
    border: 2px dashed orange;
    margin: 3px;
}

JavaScript

var twoTables = '<table><tr><td>table one</td></tr></table><table><tr><td>table two</td></tr></table>';

var $tables = $(twoTables);

$('#div1').append( $tables[0] );
$('#div2').append( $tables[1] );