Result Size: 300 x 150
x
 
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
  $("p").click(function(){
    $(this).hide();
  });
});
</script>
</head>
<body>
<p>Якщо ти клікнеш на мене, я зникну.</p>
<p>Клікни мене геть!</p>
<p>Клікни і на мене!</p>
</body>
</html>