Currently, I am attempting to target the final element of a child that lacks a specific class. You can view my progress on this JSFiddle.
<aside class="col2">
<div class="infobox teal"></div>
<div class="infobox mediumbrown"></div>
<div class="quotebox"></div>
<div class="quotebox"></div>
</aside>
I have attempted the following:
$("aside.col2 div:last").not(".quotebox").addClass("last-round");
Do you have any suggestions or advice regarding this issue?