​테이블 데이터 접근

$('#listTable tr').each(function(){
var tr = $(this);
var td = tr.children();
var text = td.eq(2).text();
});


+ Recent posts