// Select all elements of class: "someClass" and
// apply a red border to all of them
jQuery(".someClass").css("border", "1px solid red");
// Chọn một phần tử với id: mộtId và chèn được động html vào nó
jQuery ("# someId"). html (" So Bold! ");
// Exactly the same as above, but using $
$("#someId").html(" So Bold! ");