I have a DOM element (#installations) with a number of children, only one of them has a class .selected. I need to select this class and the first 3 of the rest (:not(.selected)) and show them - the goal is to have only 4 elements shown, regardless of which element has the class .selected.
The problem is, in the expression:
#installations > *:not(.selected):nth-of-type(-n+3), .selected
:nth-of-type() disregards the :not() selector and just selects the first 3 children of #installation. For example, if I have this HTML:
<div id="installations">
<div id="one"/>
<div id="two"/>
<div id="three" class="selected"/>
<div id="four"/>
<div id="five"/>
</div>
I will only have one, two, three selected and not the first four. The logical implication is that :nth-of-type() will have only (one, two, four, five) to select from, since :not() already excluded the selected one, thus selecting (one, two, four), and then the other part of the selector , .selected will add the selected element.
If .selected is not in the first four elements, let's say it's the sixth, we will have the first three + sixth elements selected.
To clarify: selecting .selected plus 3 adjacent elements is also fine. However, I this is also difficult in case .selected is in the last 3 (if we select the next 3 adjacent elements)
:not()). In your case,:not(.selected):nth-of-type(-n+3)picks up the first two elements (the third being.selected), and.selectedpicks up the third. – BoltClock♦ Dec 25 '11 at 21:01