var classes = $(this).attr('class').split(' '); // this gets the current element classes var classes = $(this).parent().attr('class').split(' '); // this gets the parent classes. Родитель в приведенной выше ситуации - анкор. Если бы я хотел получить первый родительский DIV для $ (this), как бы...