Hello jQuery Lesson 3

Using elements without declaring css beforehand

using id selectors for jQuery to grab


You can select children (immediate descendants), descendants (all grandchildren, etc , as well), parents, and grandparents



But usually, you will want to find all the li items, so you will use .find instead of .children, so it will search recursively through the tree:
jQuery also has its own custom selectors and DOM Traversal Methods that aren't provided by css, like Here we use some: