JSFiddle - React, Tailwind, and code Playground

by bohdantheone

HTML

<span id="foobox" class="special" style="display:none;width:100px;height:50px;cursor:pointer;">
<img src="http://godlab.ru/js/Myscript/pricol/6105.jpg"><br>
Нельзя быть таким пошлым=)</span><br>
<span id="foo" class="menu" style="cursor:pointer;margin:2px;"><img src="http://godlab.ru/js/Myscript/pricol/61051.jpg"><br>
Что это?
</span>

JavaScript

$(document).ready(function(){
    
    $(document.body).click(function () {
      if ($("#foobox").is(":hidden")) {
        $("#foobox").show("slow");
      } else {
       $("#foobox").hide();

      }
    });

  });