var listOfTD = $("table td > a").parent();
This gives you all td having an anchor as an immediate child from the table. My advice is to provide an identifier to the table, than you should write:
var listOfTD = $("#tableid td > a").parent();
source
share