selectors
$("#myDiv");
$(".myClass");
$("tr:first");
$("div:has(p)");
$("td:parent");
$("td:empty");
...
http://api.jquery.com/category/selectors
manipulation
$("#myDiv").addClass("myClass");
$("#myDiv").removeClass("myClass");
$(".inner").append("<span>Test</span>");
$(".inner").attr('id', 'newId');
$("#myDiv").css('border', '1px solid red');
$("#myDiv").html();
...
http://api.jquery.com/category/manipulation
events
$("#myDiv").on("click", function() {
console.log($(this).text());
});
$(".myClass").trigger("click");
...
http://api.jquery.com/category/events
effects
$("#myDiv").fadeIn();
$(".target").show();
$(".target").hide();
$("#someDiv").slideDown(500);
$(".target").toggle();
...
http://api.jquery.com/category/effects