Not quite sure what you are asking for or trying to achieve here, but if you just want to add a class to the first element, you can do it
Turn dom to find the parent
Find the first child of this element - for example,
$('li.four').parent().find(">:first-child").addClass('one');
splig source share