JSFiddle - React, Tailwind, and code Playground

HTML

<!DOCTYPE html>
<html>
<head>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
  <a href="#">Bana tıkla</a>
  <p>Bana da tıkla</p>
    <button>göster :)</button>
<script>
    $("a").click(function ( event ) {
      event.preventDefault();
      $(this).hide();
    });
    
    $("p").click(function ( event ){
      $(this).hide('slow');
    });
    
   $("button").click(function ( event ) {
      $("a").show();
      $("p").show('slow');
    });
</script>

</body>
</html>