<table id="experiences" cellpadding="0" border="1" width="100%">
<caption>table name</caption>
<tr><th>col1</th><th>col2</th><th>col3</th><th>col4</th><th>col5</th><th>col6</th></tr>
<tr><td>something</td><td>something</td><td>something</td><td>something</td><td>something</td><td>something</td></tr>
<tr><td> </td><td> </td><td> </td><td> </td><td> </td><td> </td></tr>
<tr><td> </td><td> </td><td> </td><td> </td><td> </td><td> </td></tr>
<tr><td> </td><td> </td><td> </td><td> </td><td> </td><td> </td></tr>
</table>
Like the above,the target row should be the third row from the top.
BTW, I'm not familiar with jQuery, $().eq(0)
selects the first one, how to exclude the first one?
Will $().ne(0)
work?