I have to miss something basic here. Enlighten me.
I am trying to capture the id (289 in this example):
<tr class="header"> <th>ID</th> <th>2</th> <th>3</th> </tr> <tr class="highlight"> <td class="">289</td> <td class="">field a</td> <td class="">field b</td> </tr> ... more rows
I use this selector:
$("#requests :nth-child(2) td:first")
The Firebug console shows this:
Object { length=1, more...}
Forward. Grabbing the first element of this:
>>> $("#requests :nth-child(2) td:first")[0] <td class="">
So, I thought I could call text() or value() or some such method.
If I look at the DOM tab in Firebug, I see that I have "childNodes" and "firstChild" with <TextNode textContent="289"> , but I cannot figure out how to get this.
source share