1$("span strong").first(); // first strong in first span
2$("span strong").last(); // last strong in last span
3$("div").eq(9); // element with a specific index
4$("div").filter(".big"); // all div elements with .big class
5$("div").not(".big"); // opposite of filter
6