var classes = $(this).attr('class').split(' '); // this gets the current element classes
var classes = $(this).parent().attr('class').split(' '); // this gets the parent classes.
Родитель в приведенной выше ситуации является ankor.
Если бы я хотел получить первый родительский DIV из $(this), как бы выглядел код?
var classes = $(this).div:parent().attr('class').split(' '); // just a quick try.
* В принципе, я хочу получить классы первого родительского DIV из $(this).
ТНХ