//first()
$(document).ready(function(){
$("div").first();
});
//last()
$(document).ready(function(){
$("div").last();
});
//eq()
$(document).ready(function(){
$("p").eq(1);
});
//filter()
$(document).ready(function(){
$("p").filter(".intro");
});
//not()
$(document).ready(function(){
$("p").not(".intro");
});
$("span strong").first(); // first strong in first span
$("span strong").last(); // last strong in last span
$("div").eq(9); // element with a specific index
$("div").filter(".big"); // all div elements with .big class
$("div").not(".big"); // opposite of filter