descendant selector
Description: Selects all elements that are descendants of a given ancestor.
- 
version added: 1.0jQuery( "ancestor descendant" )ancestor: Any valid selector. descendant: A selector to filter the descendant elements. 
A descendant of an element could be a child, grandchild, great-grandchild, and so on, of that element.
Example:
Mark all inputs that are descendants of a form with a dotted blue border. Give a yellow background to inputs that are descendants of a fieldset that is a descendant of a form.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | 
 |