jQuery - Selectors 7/5/2009 All jQuery posts

Here's a list of useful jQuery Selectors that I've used in the past. Enjoy!
 
Html Elements with a non-empty title attribute
 
$("input:text:[title][title!=],input:password:[title][title!=],textarea:[title][title!=],select:[title][title!=]")
 
Html Elements with one css class but not other css classes
 
$(".list .listitem:not(.skiplistitem):not(.bypasslistitem)")