I am try to select the last element of a child that does not have a certain class. I have setup a js fiddle.
$("aside.col2 :not(.quotebox)").last().addClass("last-round");
Select all of the ones that don't have the class, THEN get the last one.