Working with Child Elements
Child elements can be selected in jQuery, the same as you would select them with CSS. Simply put a space between the parent and the child. So if you wanted to select paragraphs that are within a div with an id of content, you would have a selector like the following: $(‘#content p’) Likewise you…