JSFiddle - React, Tailwind, and code Playground

by igalst

JavaScript

$(function(){

    var bg = $("<div>xxxxx</div>").css("background", "url(http://www.ynet.co.il/PicServer3/2012/10/20/4217940/1_A.jpg)");
    
    
    
    setTimeout(function(){
        $("body").append(bg);
    }, 5000);

});