[jQuery] select td 2 levels up

[jQuery] select td 2 levels up


I am trying to select the first td element two levels up from the clicked
div element.
I have this, which works, but it's ugly.
$(this).parents("td:first").parents("td:first").attr("class","greenback");
Is there a cleaner way?
- Josh