I am missing something pretty simple here, I need to add a td in the 2nd table. I cannot get it and I know its something simple. I shortened it up for intense and purposes:

<div id="content_area">
 <table>
    <table></table>
 </table>
 <table>
    <tr>
      <td> // I want to add another TD before this
        <table></table>
        <table></table>
      </td>  
    </tr>
 </table>
</div>


 $('#content_area').find('table:eq(1)').find('td').before('<td>Data</td>');
link|improve this question

Intents and purposes...? – Town Jun 13 '11 at 15:02
feedback

2 Answers

up vote 3 down vote accepted
 $('#content_area').find('>table:eq(1)').find('td').before('<td>Data</td>');

If you don't use the ">" the second table will be the one into the first table.

link|improve this answer
BINGO THANK YOU – ToddN Jun 13 '11 at 15:02
You're welcome ;) – Diego Jun 13 '11 at 15:13
The .find('td') will find all nested td elements, and add a new td before each one. The markup doesn't show any other td elements, but I'm guessing that's because OP simplified it. I could be wrong though. – user113716 Jun 13 '11 at 15:22
Your correct patrick, I did have to modify to have td:first – ToddN Jun 13 '11 at 15:35
feedback
 $('#content_area table:nth-child(2) tr').prepend('<td>Data</td>');
link|improve this answer
I like your nth-child approach better, but if you don't use >, you'll get two results from the selector. The second will be the table:nth-child(2) from the pair of nested tables. Though they don't show any tr elements, I'm guessing that's because OP simplified his markup. – user113716 Jun 13 '11 at 15:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.