Do jQuery thực chất là một thư viện của javascript. Do đó, jQuery cũng chỉ là một file js thông thường như những file javascript khác.
Việc đầu tiên phải làm khi bắt đầu sử dụng jQuery là phải khai báo, hay nói cách khác là load file jQuery javascript lên trên website của mình. Có hai cách để thực hiện việc này
1.Link trực tiếp tới file jQuery.

Code:

<head>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
</head>

2.Tải file jQuery.js về máy của mình và sử dụng như file js cá nhân.
Sử dụng jQuery như thế nào?
Dùng từ khóa định nghĩa bởi jQuery. Có hai từ khóa: jQuery và $.

VD: jQuery("#test") hoặc $("#test")
Sử dụng jQuery để truy xuất tới một Element trong HTML như thế nào?
Trước tiên, một element(là một thẻ trong html như div, table,...) có hai thuộc tính là id và name. Để truy xuất tới một element có 2 cách sau:
Với ID: jQuery("#element_id") hoặc $("#element_id").
Với name: jQuery("[name='element_name']") hoặc $("[name='element_name']"). Với element name bạn sẽ được trả ra một mảng các element có cùng name.
Ví dụ element id: Click vào button sẽ hiển thị ra alert

Code:

<script>
  $(document).ready(function(){
    $("#butAlert").click(function(){
      alert("Bạn đã click vào button này.");
    });
  });
</script>
<input id="butAlert" type="button" value="Alert"/>


$(document).ready(function(){
$("#butAlert").click(function(){
alert("Bạn đã click vào button này.");
});
});


Ví dụ element name: Check vào một radio sẽ hiển thị alert

Code:

<script>
  $(document).ready(function(){
    $("[name='cks']").change(function(){
      alert("Bạn đã chọn "+$(this).val()+" này.");
    });
  });
</script>
<input name="cks" type="radio" value="radio1"/>radio 1
<input name="cks" type="radio" value="radio2"/>radio 2
<input name="cks" type="radio" value="radio3"/>radio 3
<input name="cks" type="radio" value="radio4"/>radio 4


$(document).ready(function(){
$("[name='cks']").change(function(){
alert("Bạn đã chọn "+$(this).val()+" này.");
});
});

radio 1
radio 2
radio 3
radio 4