JSFiddle - React, Tailwind, and code Playground

by brunovieira

HTML

<div id="botbg"></div>

CSS

#botbg
{
    width:500px;
    height:500px;
}

JavaScript

$url = "http://www.sxc.hu/pic/l/s/sv/svilen001/1139316_45970912.jpg";

$img = $('<img src="'+$url+'"id="myImg"/>');
$img.bind('load', function() {
    $("#botbg").css("background-image", "url('"+$url+"')");
});