I'm trying to get td values of tr.. but unfortunately it's not working.. may be there is something wrong
My html looks like
<tr class="dname">
<td>abc</td>
<td>value here</td>
</tr>
My jquery code is
jQuery(".dname").find("tr td:eq(1)").val();
What's wrong in this ?