JSFiddle - React, Tailwind, and code Playground

by Sourabh Singh Rathore

HTML

<div class="image-container">
<!--<img src="http://i1-news.softpedia-static.com/images/extra/LINUX/large/ubuntu910wallpapers-large_005.jpg" width="200px" height="200px" />-->
</div>

CSS

.image-container {
    width:200px;
    height:200px;
  background: url('http://ajaxload.info/cache/FF/FF/FF/00/00/00/38-0.gif') no-repeat center;
    border:1px solid black;
}

JavaScript

$('.image-container img').ready(function() {
    $('.image-container').css('background','none');
});