웹마스터 팁

<!DOCTYPE html>
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js">
</script>
<script>
$(document).ready(function(){
  $("p").click(function(){
    $(this).hide();
  });
});
</script>
</head>
<body>
<p>클릭하면 내가 없어집니다</p>
<p>클릭하면 내가 없어집니다</p>
<p>클릭하면 내가 없어집니다</p>
</body>
</html>