JSFiddle - React, Tailwind, and code Playground

by António Almeida

HTML

<div class="photo"></div>

CSS

.photo{
    width: 250px;
    height: 65px;
    overflow: hidden;
}

JavaScript

tmpImg = new Image() ;
tmpImg.src = "http://cdn.sstatic.net/stackoverflow/img/sprites.png?v=5";

$(tmpImg).load( function() {
    $("body").find(".photo").append(this);
});