JSFiddle - React, Tailwind, and code Playground
by rafalry
HTML
<div type="content">
<h4>Zachętka</h4>
<div type="content" id="postac" onclick="pokazZachetke();"></div>
<div type="content" id="zachetka" onclick="schowajZachetke();"></div>
</div>
CSS
#postac {
background-color: url(http://dr-det-yp.ydp.eu/rrybacki/res/img.jpg);
}
JavaScript
function pokazZachetke(){
document.getElementById("zachetka").setAttribute("src", "zachetka.jpg");
}
function schowajZachetke(){
document.getElementById("zachetka").setAttribute("src", "");
}