JQuery Öğrenmeye Başlamak

Jquery kütüphanesinden bahsetmiştik : bu kütüphaneyi jquery.com isimli siteden indirebilirsiniz.

Jquery kütüphanesini aşağıdaki linkten de güncel hali ile indirebilirsiniz.


Jquery yi sayfanıza referans olarak eklemek bu işe başlangıç noktanız olacaktır.

<script src="../scripts/jquery-1.7.2.js" type="text/javascript"></script>

Basit Bir Örnek

<html>
<head>
<script type="text/javascript" src="jquery-1.7.2.js"></script>
<script type="text/javascript">
  $(document).ready(function(){
    $("p").click(function(){
      $(this).hide();
    });
  });
</script>
</head>
<body>
<p>Tıklarsan kaybolacağım :)</p>
</body>
</html>