I want to select a couple of targets:
- Every direct
li
descendant whose parent is not.sub-menu
(unless it's the last, cf. 2.) - Every last li element of an
ul.sub-menu
- Exclude all
li
's that are parent to aul.sub-menu
I was thinking something like this, but that doesn't seem to work: $("ul:not(.sub-menu) > li, ul.sub-menu > li:last, ('ul.sub-menu').parent()")
How would one go about when trying to select an element with non-css selectors inside multiple selectors?