JSFiddle - React, Tailwind, and code Playground
by doug65536
HTML
<div></div>
CSS
div {
width: 200px;
height: 200px;
background-image: url(http://placehold.it/200x200);
}
JavaScript
setTimeout(function() {
$('div').css('background', 'none');
}, 1000);