JSFiddle - React, Tailwind, and code Playground

by jasper

HTML

<div id="oldContainer">
    <img src="http://chachatelier.fr/programmation/images/mozodojo-mosaic-image.jpg" />
    <img src="http://chachatelier.fr/programmation/images/mozodojo-mosaic-image.jpg" />
    <img src="http://chachatelier.fr/programmation/images/mozodojo-mosaic-image.jpg" />
</div>
<div id="newContainer"></div>

CSS

#oldContainer {
    background : yellow;
}
#newContainer {
    background : red;
}

JavaScript

var $clone = $('img').clone();
console.log($clone);

$('#newContainer').html($clone);