jquery - $ function - sample event click and hide element (p,ul,il)

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("p").click(function(){
        $(this).hide();
    });
    $("h3").click(function(){
        $(this).hide();
    });

//  $("ul").click(function(){
//        $(this).hide();
  //  });

    $("il").click(function(){
        $(this).hide();
    });

});

</script>
</head>
<body>

<p>If you click on me, I will disappear.</p>
<p>Click me away!</p>
<p>Click me too!</p>
<h3>merhaba dünya..</h3>
<ul>
<il>
  aaaaaaaaaaa
</il>
</br>
<il>
  bbbbbbbbbbbbb
</il>
</br>
<il>
  cccccccccccc
</il>

</ul>
</body>
</html>

Yorumlar