[jQuery] manipulate td children
I have a table , and now I get the tr element
the table looks like
<table>
<tr tr_id=17>
<td>something</td>
<td>something else</td>
<td>...</td>
</tr>
</table>
I get tr element through this way
var dest_tr = $(".tbl tr[@tr_id="+tr_id+"]");
movie_name = dest_tr.children().eq(1).text();
in firefox it works well, but in IE 6 it just doesn't work which shows
"the object don't support this attribute or method"