Home > Article > Web Front-end > How to Target Only Immediate Children in a Nested Sortable List with CSS Selectors?
Targeting Immediate Children with CSS Selectors
In a nested sortable list, targeting only the immediate children can be challenging. While CSS selectors like "ul > li" and "#parent > li" might seem suitable, they also select all descendants, which can lead to incorrect numbering.
To address this, use the "ul > li" selector as it targets only the immediate children of a
As a workaround, you can utilize the "getElements()" method provided by MooTools, which returns all descendants. To obtain only the immediate children, use "getChildren()" instead.
By adjusting your CSS selector to "ul > li" and replacing "getElements()" with "getChildren()" in your MooTools code, you can ensure that only the immediate children of the sorted list are targeted and the positions are reset correctly.
The above is the detailed content of How to Target Only Immediate Children in a Nested Sortable List with CSS Selectors?. For more information, please follow other related articles on the PHP Chinese website!