jQuery parent > child Selector
Example
Select all <span> elements that are a direct child of a <div> element:
  
    $("div > span")
Try it Yourself »
Definition and Usage
The ("parent > child") selector selects all elements that are a direct child of the specified element.
Syntax
 ("parent > child")
  | Parameter | Description | 
|---|---|
| parent | Required. Specifies the parent element to be selected | 
  
| child | Required. Specifies the direct child element (of the specified parent element) to be selected | 
Try it Yourself - Example
Select 
all <li> elements that are a direct child of an <ul> element
How to select all <li> elements that are a direct child of an <ul> 
element with a classname.
Copyright 1999-2023 by Refsnes Data. All Rights Reserved.