This example shows two of my favorite things about jQuery: chainable methods and the find method. The find method is the easiest way to find decendent objects. There are many other ways, but when you to perform work on the parent and the child, chaining the work keeps the code tight and reduces the number of object that must be created Let's say you ......